We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dim
data_1D.year ends up in lr.params - but they should not
data_1D.year
lr.params
import mesmer import mesmer.testing data_1D = mesmer.testing.trend_data_1D() data_1D = data_1D.assign_coords(year=("time", data_1D.time.values + 1850)) lr = mesmer.stats.linear_regression.LinearRegression() lr.fit({"not_time": data_1D["time"]}, data_1D, dim="time") lr.params
<xarray.Dataset> Dimensions: (time: 30) Coordinates: year (time) int64 1850 1851 1852 1853 1854 ... 1876 1877 1878 1879 Dimensions without coordinates: time Data variables: intercept float64 -0.07344 not_time float64 0.9967 fit_intercept bool True
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
data_1D.year
ends up inlr.params
- but they should notThe text was updated successfully, but these errors were encountered: