Applies [stats::quantile()] to a variable in a netCDF file over the dimensions not listed in `MARGIN`, and writes the result to a new netCDF file.
Arguments
- filename
Character string giving the path to the input netCDF file.
- varid
Character string giving the name of the variable to process. If missing and the file contains a single variable, that variable is used.
- MARGIN
Integer or character vector specifying the dimensions to retain in the output, as in [base::apply()]. Dimension names may be used.
- na.rm
Logical. If `TRUE`, missing values are removed before computing the quantiles.
- probs
Numeric vector of probabilities in `[0, 1]` passed to [stats::quantile()].
- output
Character string giving the path to the output netCDF file to create.
- drop
Logical. Currently not implemented.
- compression
Optional numeric compression level for the output variable.
- verbose
Logical. Currently unused.
- force_v4
Logical. Currently unused internally.
- ignore.case
Logical. If `TRUE`, ignore case when matching dimension names supplied in `MARGIN`.