stdz(weights)
stdz()所属R语言包:weights
Standardizes any numerical vector, with weights.
任何数值向量标准化,配重块。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
stdz produces a standardized copy of any input variable. It can also standardize a weighted variable to produce a copy of the original variable standardized around its weighted mean and variance.
stdz产生一个标准化的任何一个输入变量的副本。周围的加权均值和方差标准化的原始变量的副本,它也可以标准化的加权变量。
用法----------Usage----------
stdz(x, weight=NULL)
参数----------Arguments----------
参数:x
x should be a numerical vector which the researcher wishes to standardize.
x应该是一个数值向量,研究人员希望,以规范。
参数:weight
weight is an optional vector of weights to be used to determining the weighted mean and variance for standardization.
weight是一个可选的权重向量,被用来确定的加权平均和方差标准化。
值----------Value----------
A vector of length equal to x with a (weighted) mean of zero and a (weighted) standard deviation of 1.
等于x的(加权)的意思是零和(加权)的标准偏差为1的长度的向量。
(作者)----------Author(s)----------
Josh Pasek, Assistant Professor of Communication Studies at the University of Michigan (www.joshpasek.com).
参见----------See Also----------
wtd.cor wtd.chi.sq wtd.t.test
wtd.corwtd.chi.sqwtd.t.test
实例----------Examples----------
test <- c(1,1,1,1,1,1,2,2,2,3,3,3,4,4)
weight <- c(.5,.5,.5,.5,.5,1,1,1,1,2,2,2,2,2)
summary(stdz(test))
summary(stdz(test, weight))
wtd.mean(stdz(test, weight), weight)
wtd.var(stdz(test, weight), weight)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|