rawMoments(sem)
rawMoments()所属R语言包:sem
Compute Raw Moments Matrix
计算原始矩矩阵
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the “uncorrected” sum-of-squares-and-products matrix divided by the number of observations.
计算的“裸眼”总和的平方和产品矩阵划分的若干意见。
用法----------Usage----------
## S3 method for class 'formula'[类formula的方法]
rawMoments(formula, data, subset, na.action,
contrasts=NULL, ...)
## Default S3 method:[默认方法]
rawMoments(object, na.rm=FALSE, ...)
cov2raw(cov, mean, N, sd)
## S3 method for class 'rawmoments'
print(x, ...)
参数----------Arguments----------
参数:object
a one-sided model formula or an object coercible to a numeric matrix.
是一种片面的的模型公式或对象强制转换为数字矩阵。
参数:formula
a one-sided model formula specifying the model matrix for which raw moments are to be computed; note that a constant is included if it is not explicitly suppressed by putting -1 in the formula.
一个片面的模型公式确定原料矩是否将被计算的模型矩阵;注意,一个常数包括如果它尚未明确抑制把-1在式。
参数:data
an optional data frame containing the variables in the formula. By default the variables are taken from the environment from which rawMoments is called.
一个可选的数据框包含公式中的变量。默认情况下,变量rawMoments被称为环境。
参数:subset
an optional vector specifying a subset of observations to be used in computing moments.
一个可选的矢量指定的一个子集被用于计算时刻的观测。
参数:na.action
a function that indicates what should happen when the data contain NAs. The default is set by the na.action option.
一个函数,表示会发生什么,当数据包含NA的。 na.action选项的默认设置。
参数:contrasts
an optional list. See the contrasts.arg argument of model.matrix.default </table>
可选列表。请参阅contrasts.argmodel.matrix.default </表参数>
参数:na.rm
if TRUE, any data rows with missing data will be removed.
如果TRUE,任何数据行丢失的数据将被删除。
参数:cov
a covariance or correlation matrix.
的协方差矩阵或相关矩阵。
参数:mean
a vector of means.
一个向量的装置。
参数:N
the number of observations on which the covariances or correlations are based.
数的观测值的协方差或相关依据。
参数:sd
an optional vector of standard deviations, to be given if cov is a correlation matrix.
一个可选的向量的标准差,如果cov是相关矩阵。
参数:x
an object of class rawmoments to print.
类的一个对象rawmoments打印。
参数:...
arguments passed down.
参数传递下去。
值----------Value----------
rawMoments and cov2raw return an object of class rawmoments, which is simply a matrix with an attribute "N" that contains the number of observations on which the moments are based.
rawMoments和cov2raw返回一个对象类rawmoments,这是一个简单的矩阵"N"包含属性的数量是基于观察的时刻。
(作者)----------Author(s)----------
John Fox <a href="mailto:jfox@mcmaster.ca">jfox@mcmaster.ca</a>
参见----------See Also----------
sem
sem
实例----------Examples----------
# the following are all equivalent (with the exception of the name of the intercept):[以下都是等效的(与异常的截距的名称):]
rawMoments(cbind(1, Kmenta))
rawMoments(~ Q + P + D + F + A, data=Kmenta)
Cov <- with(Kmenta, cov(cbind(Q, P, D, F, A)))
cov2raw(Cov, colMeans(Kmenta), nrow(Kmenta))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|