globalRecode(sdcMicro)
globalRecode()所属R语言包:sdcMicro
Global Recoding
全球重新编码
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Global recoding
全球重新编码
用法----------Usage----------
globalRecode(x, breaks, labels, method="equidistant")
参数----------Arguments----------
参数:x
vector of class numeric or of class factor with integer labels for recoding
向量类的数字或类因素与重新编码的整数标签
参数:breaks
either a numeric vector of cut points or number giving the number of intervals which x is to be cut into.
无论是一个数值向量的切点或数字给的时间间隔的数目,其中x是被切割成。
参数:labels
labels for the levels of the resulting category. By default, labels are constructed using "(a,b]" interval notation. If labels = FALSE, simple integer codes are returned instead of a factor.
标签的水平所得到的类别。默认情况下,标签的使用“(A,B]”间隔符号。如果标签= FALSE,简单的整数返回代码,而不是一个因素。
参数:method
method “equidistant” for equal sized intervalls method “logEqui” for equal sized intervalls for log-transformed data method “equalAmount” for intervalls with approxiomately the same amount of observations
法“等距离”同等大小的卷时间法“logEqui”同等大小的卷时间数转换的数据的方法的“equalAmount”卷时间与approxiomately相同数量的观察
Details
详细信息----------Details----------
If a labels parameter is specified, its values are used to name the factor levels. If none is specified, the factor level labels are constructed.
如果一个标签指定参数,其值用来命名的因子水平。如果没有指定,因子水平的标签。
值----------Value----------
A factor is returned, unless labels = FALSE which results in the mere integer level codes.
返回的一个因素,除非标签= FALSE,这导致在单纯的整数级代码。
参见----------See Also----------
cut
cut
实例----------Examples----------
data(free1)
head(globalRecode(free1[,"AGE"], breaks=c(1,9,19,29,39,49,59,69,100), labels=1:8))
table(globalRecode(free1[,"AGE"], breaks=c(1,9,19,29,39,49,59,69,100), labels=1:8))
table(globalRecode(free1[,"AGE"], breaks=c(1,9,19,29,39,49,59,69,100)))
table(globalRecode(free1[,"AGE"], breaks=6))
table(globalRecode(free1[,"AGE"], breaks=6, method="logEqui"))
table(globalRecode(free1[,"AGE"], breaks=6, method="equalAmount"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|