esmtools.stats.polyfit

esmtools.stats.polyfit(x, y, order, dim='time', nan_policy='none')[source]

Returns the fitted polynomial line of y regressed onto x.

Note

This will be released as a standard xarray func in 0.15.2.

Parameters:
  • y (x,) – Independent and dependent variables used in the polynomial fit.
  • order (int) – Order of polynomial fit to perform.
  • dim (str, optional) – Dimension to apply polynomial fit over. Defaults to “time”.
  • nan_policy (str, optional) –

    Policy to use when handling nans. Defaults to “none”.

    • ’none’, ‘propagate’: If a NaN exists anywhere on the given dimension,
      return nans for that whole dimension.
    • ’raise’: If a NaN exists at all in the datasets, raise an error.
    • ’omit’, ‘drop’: If a NaN exists in x or y, drop that index and
      compute the slope without it.
Returns:

The polynomial fit for y regressed onto x. Has the same

dimensions as y.

Return type:

xarray object