roll_var: Rolling Variances

Description Usage Arguments Details Value Examples

View source: R/roll.R

Description

A function for computing the rolling and expanding variances of time-series data.

Usage

1
2
3
roll_var(x, width, weights = rep(1, width), center = TRUE,
  min_obs = width, complete_obs = FALSE, na_restore = FALSE,
  online = TRUE)

Arguments

x

vector or matrix. Rows are observations and columns are variables.

width

integer. Window size.

weights

vector. Weights for each observation within a window.

center

logical. If TRUE then the weighted mean of each variable is used, if FALSE then zero is used.

min_obs

integer. Minimum number of observations required to have a value within a window, otherwise result is NA.

complete_obs

logical. If TRUE then rows containing any missing values are removed, if FALSE then each value is used.

na_restore

logical. Should missing values be restored?

online

logical. Process observations using an online algorithm.

Details

The denominator used gives an unbiased estimate of the variance, so if the weights are the default then the divisor n - 1 is obtained.

Value

An object of the same class and dimension as x with the rolling and expanding variances.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
n <- 15
x <- rnorm(n)
weights <- 0.9 ^ (n:1)

# rolling variances with complete windows
roll_var(x, width = 5)

# rolling variances with partial windows
roll_var(x, width = 5, min_obs = 1)

# expanding variances with partial windows
roll_var(x, width = n, min_obs = 1)

# expanding variances with partial windows and weights
roll_var(x, width = n, min_obs = 1, weights = weights)

Example output

 [1]        NA        NA        NA        NA 0.9055892 0.4613841 0.4474906
 [8] 0.5142274 0.1290636 0.1637473 0.1607914 0.3390854 0.3580176 0.5441532
[15] 0.4990635
 [1]        NA 1.6340998 0.8756766 1.1136935 0.9055892 0.4613841 0.4474906
 [8] 0.5142274 0.1290636 0.1637473 0.1607914 0.3390854 0.3580176 0.5441532
[15] 0.4990635
 [1]        NA 1.6340998 0.8756766 1.1136935 0.9055892 0.7385328 0.6466820
 [8] 0.5750886 0.5032321 0.4855500 0.4372868 0.4782188 0.4598313 0.4771764
[15] 0.4780957
 [1]        NA 1.6340998 0.8225078 1.0689141 0.8667009 0.6775731 0.5694387
 [8] 0.4935989 0.4070521 0.3979721 0.3370032 0.4226713 0.3949314 0.4458724
[15] 0.4505977

roll documentation built on July 13, 2020, 5:09 p.m.