powered by
Principal component projection method that extracts factor loadings and specific variances through a projection matrix.
PPC(data, m)
List with Apro (loadings), Dpro (specific variances), Sigmahatpro.
T x N data matrix.
Number of components.
if (FALSE) { set.seed(123) N <- 100; T <- 150; m.true <- 3 dat <- matrix(rnorm(T * N), T, N) ppc.out <- EFM::PPC(dat, m = m.true) print(round(ppc.out$Apro[1:5, 1:3], 3)) }
Run the code above in your browser using DataLab