n.check.data {vectorwavelet} | R Documentation |
Check the format of multivariate time series
Description
Check the format of multivariate time series
Usage
n.check.data(y, x = NULL)
Arguments
y |
time series y in matrix format ( |
x |
multivariate time series x in matrix format ( |
Value
Returns a named list containing:
t |
time steps |
dt |
size of a time step |
n.obs |
number of observations |
Author(s)
Tunc Oygur (info@tuncoygur.com.tr)
Code based on biwavelet package written by Tarik C. Gouhier.
Examples
#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)
[Package vectorwavelet version 0.1.0 Index]