The default method constructs a FAmodel. Other methods extract a FAmodel from an object.
FAmodel(obj, ...)
# S3 method for default
FAmodel(obj, Omega=NULL, Phi=NULL, LB=NULL, LB.std=NULL,
stats=NULL, ...)
# S3 method for FAmodel
FAmodel(obj, ...)
The loadings matrix (
Covariance of the idiosyncratic term.
Covariance of the factors.
Factor score predictor matrix.
The standardized factor score predictor matrix.
An optional list of statistics from model estimation.
arguments passed to other methods or stored in the object.
A FAmodel.
The default method is the constructor for FAmodel
objects. Other
methods extract a FAmodel
object from other objects that contain one.
The loadings must be supplied to the default method. Omega,
Phi, and LB are included when the object comes from an estimation method, but
are not necessary when the object is being specified in order to simulate.
The model is defined by
where the factors
# NOT RUN {
B <- t(matrix(c(0.9, 0.1,
0.8, 0.2,
0.7, 0.3,
0.5, 0.5,
0.3, 0.7,
0.1, 0.9), 2,6))
z <- FAmodel(B)
z
loadings(z)
# }
Run the code above in your browser using DataLab