dummify(weights)
dummify()所属R语言包:weights
Separate a factor into separate dummy variables for each level.
每个级别的独立的虚拟变量分离的一个因素。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
dummify creates a matrix with columns signifying separate dummy variables for each level of a factor. The column names are the former levels of the factor.
dummify创建一个矩阵列着不同的虚拟变量为每个级别的一个因素。列名前水平的因素。
用法----------Usage----------
dummify(x, show.na=FALSE, keep.na=FALSE)
参数----------Arguments----------
参数:x
x is a factor the researcher desires to split into separate dummy variables.
x是一个因素,研究人员希望分裂成独立的虚拟变量。
参数:show.na
If show.na is 'TRUE', output will include a column idicating the cases that are missing.
如果show.na是TRUE,输出将包括缺少的情况下,一列idicating。
参数:keep.na
If keep.na is 'TRUE', output vectors will have "NA"s for cases that were originally missing.
如果keep.na是TRUE,输出向量原本缺少的情况下,将有“NA”。
值----------Value----------
dummify returns a matrix with a number of rows equal to the length of x and a number of columns equal to the number of levels of x.
dummify返回一个矩阵的行数等于长度x和数目的列的数目等于水平x。
(作者)----------Author(s)----------
Josh Pasek, Assistant Professor of Communication Studies at the University of Michigan (www.joshpasek.com).
实例----------Examples----------
require(anesrake)
data("anes04")
anes04$agecats <- cut(anes04$age, c(17, 25,35,45,55,65, 99))
levels(anes04$agecats) <- c("age1824", "age2534", "age3544",
"age4554", "age5564", "age6599")
agedums <- dummify(anes04$agecats)
table(anes04$agecats)
summary(agedums)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|