knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
The goal of changepoint.geo is to implement the high-dimensional changepoint detection method GeomCP described in Grundy et al. (2020). This method allows for the detection of changes in mean and variance in high-dimensional time series. The main function is geomcp()
.
You can install the released version of changepoint.geo from CRAN with:
install.packages("changepoint.geo ")
And the development version from GitHub with:
# install.packages("devtools") devtools::install_github("grundy95/changepoint.geo")
This is a basic example which shows the main functionality of the package:
library(changepoint.geo ) set.seed(1) X <- rbind(matrix(rnorm(100*50),ncol=50),matrix(rnorm(100*50,0,2),ncol=50)) ans <- geomcp(X) summary(ans) plot(ans)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.