findIndIntercept(simsem)
findIndIntercept()所属R语言包:simsem
Find indicator intercepts from factor loading matrix, total factor mean, and indicator mean.
指标拦截从因子载荷矩阵,平均全要素,指标的意思。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Find indicator (measurement) intercepts from a factor loading matrix, total factor mean, and indicator mean.
的因子载荷矩阵,平均全要素,指标平均指标(测量)拦截。
用法----------Usage----------
findIndIntercept(lambda, factorMean = NULL, indicatorMean = NULL)
参数----------Arguments----------
参数:lambda
Factor loading matrix
因子载荷矩阵
参数:factorMean
Total (model-implied) mean of factors. As a default, all total factor means are 0.
总计(模型隐含的)的意思因素的影响。默认情况下,所有的全要素手段为0。
参数:indicatorMean
Total indicator means. As a default, all total indicator means are 0.
总指标的意思。默认情况下,所有的总的指示装置为0。
值----------Value----------
A vector of indicator (measurement) intercepts.
一个向量指标(测量)拦截。
(作者)----------Author(s)----------
Sunthud Pornprasertmanit (University of Kansas; <a href="mailto:psunthud@ku.edu">psunthud@ku.edu</a>)
参见----------See Also----------
findIndMean to find indicator (measurement) total means
findIndMean找到指标(测量)总装置
findIndResidualVar to find indicator (measurement) residual variances
findIndResidualVar找到指标(测量)残留的差异
findIndTotalVar to find indicator (measurement) total variances
findIndTotalVar找到指标(测量)总变异
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)
facMean <- c(0.5, 0.2)
indMean <- rep(1, 6)
findIndIntercept(loading, facMean, indMean)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|