fastcpd_mean | R Documentation |
fastcpd_mean()
and fastcpd.mean()
are wrapper
functions of fastcpd()
to find the mean change. The function is
similar to fastcpd()
except that the data is by default a matrix or
data frame or a vector with each row / element as an observation and thus a
formula is not required here.
fastcpd_mean(data, ...)
fastcpd.mean(data, ...)
data |
A matrix, a data frame or a vector. |
... |
Other arguments passed to |
A fastcpd object.
fastcpd()
set.seed(1)
data <- matrix(c(
rnorm(300, mean = 0, sd = 10),
rnorm(400, mean = 50, sd = 10),
rnorm(300, mean = 2, sd = 10)
))
system.time(result <- fastcpd.mean(data))
summary(result)
plot(result)
set.seed(1)
p <- 3
data <- rbind(
matrix(rnorm(p * 3e+5, mean = 0, sd = 10), ncol = p),
matrix(rnorm(p * 4e+5, mean = 50, sd = 10), ncol = p),
matrix(rnorm(p * 3e+5, mean = 2, sd = 10), ncol = p)
)
system.time(result <- fastcpd.mean(data, r.progress = FALSE, cp_only = TRUE))
summary(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.