Open zoj613 opened 2 years ago
Hi @zoj613 , thanks for the bug report. This should be a very simple fix, and your MVCE would make a great test for the behaviour. Would you be interested in contributing to xarray by submitting a PR with a fix? (No worries if you would rather we fix it, but if you are then we are always happy to welcome new contributors :grinning: )
I think this depends on the version of xarray you’re using. Newer versions from at least 0.16.0 and later now support your MVCE. If you’re still using an older version, you’ll have to pass it as dictionary elements as you said. @zoj613 @TomNicholas, you can check this out.
@alrho007 I still get this error using version 2022.9.0
:
In [1]: import pandas as pd [5/182]
...: 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")
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Cell In[1], line 18
3 import numpy as np
5 da = xr.DataArray(
6
7 np.random.rand(4, 3),
(...)
16
17 )
---> 18 da.curvefit(coords=["time"], func=lambda x, params: x, method="trf")
TypeError: curvefit() got an unexpected keyword argument 'method'
In [2]: xr.__version__
Out[2]: '2022.9.0'
@zoj613 Could you try to provide kwargs=kwargs
? Where kwargs is a dict with method-key inside.
Nevermind, I should read the complete issue, not only the last comment.
I think this is just a problem with the doc-string then.
@TomNicholas I would like to work on this. Where do I start from?
Hey! I'm an Outreachy intern, I would like to work on this issue.
@TomNicholas Could you please help me out. Can I work on this issue?
I think we should continue the discussion in https://github.com/pydata/xarray/issues/7130 since it is not clear which function signature (kwargs vs **kwargs) is preferred.
Actually, as @kmuehlbauer pointed out, we can address this for now by updating the docstring of the function. It should get clear the the extra kwargs are passed as a dict and not as **kwargs.
@headtr1ck
I tried by making some changes. There was only one function that I could find with the issue mentioned. But, I am getting some failed test cases.
As said above, you don't have to change code to make it work. The intended way of using is da.curvefit(...., kwargs={"method": "trf"})
.
You can submit a PR which changes **kwargs to kwargs in the docstring (both, Dataset.curvefit and DataArray.curvefit) and probably add some more info there.
Got it, thank you!
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: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
MVCE confirmation
Relevant log output
Anything else we need to know?
No response
Environment