The goal of VCCP is to implement Vine Copula Change Points (VCCP) model to estimate the number and location of multiple change points in the functional connectivity structure of multivariate time series. Possible binary segmentation methods of the VCCP model include NBS, OBS, MOSUM, and WBS. You can also check the significance of detected candidates by Stationary Bootstrap or Vuong test method.
You can install the released version of VCCP from CRAN with:
install.packages("VCCP")
And the development version from GitHub with:
# install.packages("devtools")
::install_github("xinxiong0238/VCCP") devtools
These are some basic examples which show you how to detect changes in the functional connectivity of multivariate time series using different binary segmentation methods and inference tests.
library(vccp)
## basic example code
<- cbind(1:180, mvn.sim.2.cps(180, 8, seed = 101))
data <- 180
T
<- vccp.fun(data, method = "NBS", delta = 30, test = "V")
result.NV #> Binary search, round 1 ...
#> Binary search, round 2 ...
#> Binary search, round 3 ...
#> Perform Vuong test on candidates...
getTestPlot(result.NV)
title("VCCP: NBS + Vuong")
<- vccp.fun(data, method = "NBS", delta = 30, test = "B")
result.NB #> Binary search, round 1 ...
#> Binary search, round 2 ...
#> Binary search, round 3 ...
#> Perform stationary bootstrap test on candidates...
getTestPlot(result.NB)
title("VCCP: NBS + Stationary Bootstrap")
<- vccp.fun(data, method = "MOSUM", delta = 30, test = "V")
result.MV #> MOSUM search ...
#> Perform Vuong test on candidates...
getTestPlot(result.MV)
title("VCCP: MOSUM + Vuong")
<- vccp.fun(data, method = "MOSUM", delta = 30, test = "B")
result.MB #> MOSUM search ...
#> Perform stationary bootstrap test on candidates...
getTestPlot(result.MB)
title("VCCP: MOSUM + Stationary Bootstrap")