wpct(weights)
wpct()所属R语言包:weights
Provides a weighted table of percentages for any variable.
提供的任何变量的加权表的百分比。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
wpct produces a weighted table of the proportion of data in each category for any variable. This is simply a weighted frequency table divided by its sum.
wpct产生一个加权表中的比例,在每个类别中的任何变量的数据。这是一个简单的加权频率的总和除以表。
用法----------Usage----------
wpct(x, weight, na.rm=TRUE)
参数----------Arguments----------
参数:x
x should be a vector for which a set of proportions is desired.
x应该是一个向量所需的其中一组的比例。
参数:weight
weight is a vector of weights to be used to determining the weighted proportion in each category of x.
weight是被使用,以确定在每个类别中的x的加权比例的权重的矢量。
参数:na.rm
If na.rm is true, missing data will be dropped. If na.rm is false, missing data will return an error.
如果na.rm是真实的,丢失的数据将被丢弃。如果na.rm是假的,丢失的数据会返回一个错误。
值----------Value----------
A table object of length equal to the number of separate values of x.
甲x单独的值的数目的长度等于表对象。
(作者)----------Author(s)----------
Josh Pasek, Assistant Professor of Communication Studies at the University of Michigan (www.joshpasek.com).
实例----------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)
wpct(test)
wpct(test, weight)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|