Learn R Programming

mcgf (version 1.1.1)

sd_rs: Calculate standard deviation for each location under each regime.

Description

Calculate standard deviation for each location under each regime.

Usage

sd_rs(x, label)

Value

A list of standard deviations for each regime.

Arguments

x

A data.frame or matrix.

label

A vector of regime labels. Its length must be the same as the number rows in x.

Examples

Run this code
set.seed(123)
x <- matrix(rnorm(200), nrow = 100)
label <- sample(1:2, 100, replace = TRUE)
sd_rs(x, label = factor(label))

Run the code above in your browser using DataLab