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
interp2d
Lately seeing this deprecation warning:
DeprecationWarning: interp2d is deprecated in SciPy 1.10 and will be removed in SciPy 1.14.0. For legacy code, nearly bug-for-bug compatible replacements are RectBivariateSpline on regular grids, and bisplrep/bisplev for scattered 2D data. In new code, for regular grids use RegularGridInterpolator instead. For scattered data, prefer LinearNDInterpolator or CloughTocher2DInterpolator. For more details see https://scipy.github.io/devdocs/notebooks/interp_transition_guide.html
DeprecationWarning: interp2d is deprecated in SciPy 1.10 and will be removed in SciPy 1.14.0.
For legacy code, nearly bug-for-bug compatible replacements are RectBivariateSpline on regular grids, and bisplrep/bisplev for scattered 2D data.
RectBivariateSpline
bisplrep
bisplev
In new code, for regular grids use RegularGridInterpolator instead. For scattered data, prefer LinearNDInterpolator or CloughTocher2DInterpolator.
RegularGridInterpolator
LinearNDInterpolator
CloughTocher2DInterpolator
For more details see https://scipy.github.io/devdocs/notebooks/interp_transition_guide.html
https://scipy.github.io/devdocs/notebooks/interp_transition_guide.html
This affects StandardLLH.create_acceptance_function(). SHould be replaced as suggested in the warning.
StandardLLH.create_acceptance_function()
The text was updated successfully, but these errors were encountered:
Ehe, this is there since #270
I assume replacing with RectBivariateSpline should be painless.
Sorry, something went wrong.
Ok, then closing because duplicate of #270
No branches or pull requests
Lately seeing this deprecation warning:
This affects
StandardLLH.create_acceptance_function()
. SHould be replaced as suggested in the warning.The text was updated successfully, but these errors were encountered: