Description Usage Arguments Value Author(s) Examples
Check the format of multivariate time series
1  | n.check.data(y, x = NULL)
 | 
y | 
 time series y in matrix format (  | 
x | 
 multivariate time series x in matrix format (  | 
Returns a named list containing:
t | 
 time steps  | 
dt | 
 size of a time step  | 
n.obs | 
 number of observations  | 
Tunc Oygur (info@tuncoygur.com.tr)
Code based on biwavelet package written by Tarik C. Gouhier.
1 2 3 4 5 6 7 8  | #Example 1:
t1 <- cbind(1:100, rnorm(100))
n.check.data(y = t1)
#Example 2:
t1 <- cbind(1:100, rnorm(100))
t2 <- cbind(1:100, rnorm(100), rnorm(100), rnorm(100))
n.check.data(y = t1, x = t2)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.