MatrixSet-class(simsem)
MatrixSet-class()所属R语言包:simsem
Class "MatrixSet"
类“MatrixSet”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Set of vectors and matrices that saves model specification (CFA, Path analysis, or SEM) for data generation or trivial model misspecification for data generation.
向量和矩阵,节省了数据生成的数据生成或琐碎的模型误设的型号规格(CFA,通径分析,SEM)设置。
插槽----------Slots----------
modelType: Model type (CFA, Path, or SEM)
modelType:型号(CFA,路径,或SEM)
LY: Factor loading matrix between endogenous factors and Y indicators
LY:因子载荷矩阵内源性因素和Y指标
TE: Covariance matrix between Y measurement error
TE:Y测量误差之间的协方差矩阵
RTE: Correlation matrix between Y measurement error
Y测量误差之间的相关性矩阵RTE:
VTE: Variance of Y measurement error
VTE:Y的测量误差的方差
PS: Residual covariance of endogenous factors
PS:剩余协方差的内生因素
RPS: Residual correlation of endogenous factors
RPS:剩余的内生因素的相关性
VPS: Residual variances of endogenous factors
VPS:剩余的内生因素的差异
BE: Regression effect among endogenous factors
BE:回归之间的内生因素的影响
TY: Measurement intercepts of Y indicators
TY:Y的指标的测量拦截
AL: Factor intercepts of endogenous factors
AL:内源性因素的因子拦截
ME: Factor means of endogenous factors
ME:系数是指内源性因素
MY: Total Mean of Y indicators
MY的Y指标:总的平均
VE: Total variance of endogenous factors
VE:总方差的内生因素
VY: Total variance of Y indicators
VY:总方差的Y指标
LX: Factor loading matrix between exogenous factors and X indicators
LX:因子载荷矩阵之间的外生因素和X指标
TD: Covariance matrix between X measurement error
TD:X测量误差之间的协方差矩阵
RTD: Correlation matrix between X measurement error
RTD:X测量误差之间的相关性矩阵
VTD: Variance of X measurement error
VTD:X的测量误差的方差
PH: Covariance among exogenous factors
PH:外生因素之间的协方差
RPH: Correlation among exogenous factors
RPH:外源性因素之间的相关性
GA: Regreeion effect from exogenous factors to endogenous factors
GA:Regreeion外源性因素的影响,内生因素
TX: Measurement intercepts of X indicators
TX的X指标:测量拦截
KA: Factor Mean of exogenous factors
KA因子的平均外生因素
MX: Total Mean of X indicators
MX的X指标:总的平均
VPH: Variance of exogenous factors
VPH:外源性因素方差
VX: Total variance of X indicators
VX:总方差的X指标
TH: Measurement error covariance between X indicators and Y indicators
TH:X指示标志和Y指标的测量误差之间的协方差
RTH: Measurement error correlation between X indicators and Y indicators
RTH:X指示标志和Y指标的测量误差之间的相关性
方法----------Methods----------
summary Get the summary of model specification
总结取得的型号规格概要
(作者)----------Author(s)----------
Sunthud Pornprasertmanit (University of Kansas; <a href="mailto:psunthud@ku.edu">psunthud@ku.edu</a>)
参见----------See Also----------
SimSet
SimSet
SimMisspec.
SimMisspec。
实例----------Examples----------
showClass("SimSet")
loading <- matrix(0, 6, 2)
loading[1:3, 1] <- NA
loading[4:6, 2] <- NA
loadingValues <- matrix(0, 6, 2)
loadingValues[1:3, 1] <- 0.7
loadingValues[4:6, 2] <- 0.7
LX <- simMatrix(loading, loadingValues)
latent.cor <- matrix(NA, 2, 2)
diag(latent.cor) <- 1
RPH <- symMatrix(latent.cor, 0.5)
error.cor <- matrix(0, 6, 6)
diag(error.cor) <- 1
RTD <- symMatrix(error.cor)
CFA.Model <- simSetCFA(LX = LX, RPH = RPH, RTD = RTD)
MatrixSet <- run(CFA.Model)
summary(MatrixSet)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|