Passing extra keyword arguments to curvefit
throws an exception. #6891
Description
What happened?
Just like the title says, passing an extra keyword argument corresponding to scipy's curve_fit
throws an exception. The documentation has a parameter section that says:
*kwargs (optional) – Additional keyword arguments to passed to scipy curve_fit
So if one specifies a method="trf"
keyword argument to the .curvefit
method, you get an error: TypeError: curvefit() got an unexpected keyword argument 'method'
The only way it works as expected is if I pass the keyword arguments as dictionary elements via a kwargs
argument like so: kwargs={"method": "trf"}
. This behaviour contradicts what is mentioned in the docstring.
What did you expect to happen?
No error thrown
Minimal Complete Verifiable Example
import pandas as pd
import xarray as xr
import numpy as np
da = xr.DataArray(
np.random.rand(4, 3),
[
("time", pd.date_range("2000-01-01", periods=4)),
("space", ["IA", "IL", "IN"]),
],
)
da.curvefit(coords=["time"], func=lambda x, params: x, method="trf")
MVCE confirmation
- Minimal example — the example is as focused as reasonably possible to demonstrate the underlying issue in xarray.
- Complete example — the example is self-contained, including all data and the text of any traceback.
- Verifiable example — the example copy & pastes into an IPython prompt or Binder notebook, returning the result.
- New issue — a search of GitHub Issues suggests this is not a duplicate.
Relevant log output
TypeError: curvefit() got an unexpected keyword argument 'method'
Anything else we need to know?
No response
Environment
xarray: 2022.3.0
pandas: 1.4.3
numpy: 1.22.0
scipy: 1.6.2
netCDF4: 1.6.0
pydap: None
h5netcdf: 0.15.0
h5py: 3.7.0
Nio: None
zarr: 2.10.3
cftime: 1.6.1
nc_time_axis: None
PseudoNetCDF: None
rasterio: None
cfgrib: 0.9.10.1
iris: None
bottleneck: None
dask: 2022.03.0
distributed: 2022.3.0
matplotlib: None
cartopy: None
seaborn: None
numbagg: None
fsspec: 2022.01.0
cupy: None
pint: None
sparse: 0.13.0
setuptools: 63.1.0
pip: 22.2.2
conda: None
pytest: 6.2.5
IPython: 8.4.0
sphinx: None
</details>