findIndTotalVar(simsem)
findIndTotalVar()所属R语言包:simsem
Find indicator total variances from factor loading matrix, total factor covariance, and indicator residual variances.
指标总方差的因子载荷矩阵,全要素协方差,和指示器剩余的差异。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find indicator total variances from a factor loading matrix, total factor covariance matrix, and indicator (measurement) residual variances.
指标总方差从全要素的因子载荷矩阵,协方差矩阵,以及指标(测量)残留的差异。
用法----------Usage----------
findIndTotalVar(lambda, totalFactorCov, residualVarTheta)
参数----------Arguments----------
参数:lambda
Factor loading matrix
因子载荷矩阵
参数:totalFactorCov
Total (model-implied) covariance matrix among factors.
总额(模型隐含的因素)之间的协方差矩阵。
参数:residualVarTheta
Indicator (measurement) residual variances.
指标(测量)残留的差异。
值----------Value----------
A vector of indicator total variances.
指标总方差的矢量。
(作者)----------Author(s)----------
Sunthud Pornprasertmanit (University of Kansas; <a href="mailto:psunthud@ku.edu">psunthud@ku.edu</a>)
参见----------See Also----------
findIndIntercept to find indicator (measurement) intercepts
findIndIntercept找到指标(测量)拦截
findIndMean to find indicator (measurement) total means
findIndMean找到指标(测量)总装置
findIndResidualVar to find indicator (measurement) residual variances
findIndResidualVar找到指标(测量)残留的差异
findFactorIntercept to find factor intercepts
findFactorIntercept因素拦截
findFactorMean to find factor means
findFactorMean找到因素手段
findFactorResidualVar to find factor residual variances
findFactorResidualVar因素残余差异
findFactorTotalVar to find factor total variances
findFactorTotalVar找到因素总变异
findFactorTotalCov to find factor covariances
findFactorTotalCov因素的协方差
实例----------Examples----------
loading <- matrix(0, 6, 2)
loading[1:3, 1] <- c(0.6, 0.7, 0.8)
loading[4:6, 2] <- c(0.6, 0.7, 0.8)
facCov <- matrix(c(1, 0.5, 0.5, 1), 2, 2)
resVar <- c(0.64, 0.51, 0.36, 0.64, 0.51, 0.36)
findIndTotalVar(loading, facCov, resVar)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|