xarray.DataArray.dropna#

DataArray.dropna(dim, how='any', thresh=None)[source]#

Returns a new array with dropped labels for missing values along the provided dimension.

Parameters
  • dim (Hashable) – Dimension along which to drop missing values. Dropping along multiple dimensions simultaneously is not yet supported.

  • how ({"any", "all"}, default: "any") –

    • any : if any NA values are present, drop that label

    • all : if all values are NA, drop that label

  • thresh (int or None, default: None) – If supplied, require this many non-NA values.

Returns

dropped (DataArray)