Skip to content

Commit

Permalink
dataset interp documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
hollymandel committed Oct 11, 2024
1 parent bd61de4 commit 1ae7aa0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3941,9 +3941,9 @@ def interp(
If True, the interpolation is decomposed into independent interpolations of minimal dimensionality such that
the interpolation coordinates are independent. Setting this to be True alters the behavior of certain
multi-dimensional interpolants compared to the default SciPy output.
kwargs : dict-like or None, default: None
Additional keyword arguments passed to scipy's interpolator. Valid
options and their behavior depend which inteprolant is used.
kwargs : dict, optional
Additional keyword arguments passed to the interpolator. Valid
options and their behavior depend which interpolant is used.
method_non_numeric : {"nearest", "pad", "ffill", "backfill", "bfill"}, optional
Method for non-numeric types. Passed on to :py:meth:`Dataset.reindex`.
``"nearest"`` is used by default.
Expand Down Expand Up @@ -4243,7 +4243,8 @@ def interp_like(
where the interpolation coordinates are independent. Setting this to be True alters the behavior of certain
multi-dimensional interpolants compared to the default SciPy output.
kwargs : dict, optional
Additional keyword passed to scipy's interpolator.
Additional keyword arguments passed to the interpolator. Valid
options and their behavior depend which interpolant is use
method_non_numeric : {"nearest", "pad", "ffill", "backfill", "bfill"}, optional
Method for non-numeric types. Passed on to :py:meth:`Dataset.reindex`.
``"nearest"`` is used by default.
Expand Down

0 comments on commit 1ae7aa0

Please sign in to comment.