Loading [MathJax]/jax/output/HTML-CSS/jax.js

"env.example" is an R environment containing the data generated from the proposed model with p=2.

data("env.example")

Format

An R environment

X

a n×q data matrix, the covariate matrix of n subjects with q1 predictors. The first column is all ones.

Y

a list of length n. Each list element is a T×p matrix, the data matrix of T observations from p features.

Phi

a p×p matrix, the true projection matrix used to generate the data.

beta

a q×p matrix, the true coefficient matrix used to generate the data.

Sigma

a p×p×n array, the covariance matrix of the n subjects.

Details

For subject i observation t (i=1,,n, t=1,,T), yit=(yit1,,yitp) was generated from a p-dimensional normal distribution with mean zero and covariance Σ, where Σ=ΦΛΦ, Φ is an orthonormal matrix and Λ=diag(λ1,,λp) is a diagonal matrix. The eigenvalues λij (j=1,,p) satisfies the following log-linear model log(λij)=xiβj, where βj is the jth column of beta.

Examples

data(env.example)
X<-get("X",env.example)
Y<-get("Y",env.example)