na.interpolation: Deprecated use 'na_interpolation' instead.

View source: R/deprecated_defunct.R

na.interpolationR Documentation

Deprecated use na_interpolation instead.

Description

na.interpolation is replaced by na_interpolation. The functionality stays the same. The new name better fits modern R code style guidelines (which prefer _ over . in function names).

Usage

na.interpolation(x, option = "linear", maxgap = Inf, ...)

Arguments

x

Numeric Vector (vector) or Time Series (ts) object in which missing values shall be replaced

option

Algorithm to be used. Accepts the following input:

  • "linear" - for linear interpolation using approx (default choice)

  • "spline" - for spline interpolation using spline

  • "stine" - for Stineman interpolation using stinterp

maxgap

Maximum number of successive NAs to still perform imputation on. Default setting is to replace all NAs without restrictions. With this option set, consecutive NAs runs, that are longer than 'maxgap' will be left NA. This option mostly makes sense if you want to treat long runs of NA afterwards separately.

...

Additional parameters to be passed through to approx or spline interpolation functions


imputeTS documentation built on Sept. 9, 2022, 9:05 a.m.