View source: R/plot_decomposed.R
plot_decomposed | R Documentation |
Plot decomposed time series from comp_tsout_ens or mv_tsout_ens output.
plot_decomposed(obj, X = NULL, method = "pca")
obj |
The output from |
X |
The data matrix used as input to |
method |
The decomposition method, choose between "pca" (default), "dobin", "ics", "ica" or "all" for complete set of methods. |
A ggplot showing the time series from the selected decomposition method.
## Not run: set.seed(100) n <- 600 x <- sample(1:100, n, replace=TRUE) x[25] <- 200 x[320] <- 300 x2 <- sample(1:100, n, replace=TRUE) x3 <- sample(1:100, n, replace=TRUE) x4 <- sample(1:100, n, replace=TRUE) X <- cbind.data.frame(x, x2, x3, x4) out1 <- mv_tsout_ens(X, compr=2, fast=FALSE) plot_decomposed(out1, X = X, method = "pca") plot_decomposed(out1, X = X, method = "all") X <- X/rowSums(X) out2 <- comp_tsout_ens(X, compr=2, fast=FALSE) plot_decomposed(out2) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.