Extract.factor(base)
Extract.factor()所属R语言包:base
Extract or Replace Parts of a Factor
提取或更换零件的一个因素
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract or replace subsets of factors.
提取或替换因素的子集。
用法----------Usage----------
## S3 method for class 'factor'
x[..., drop = FALSE]
## S3 method for class 'factor'
x[[...]]
## S3 replacement method for class 'factor'
x[...] <- value
## S3 replacement method for class 'factor'
x[[...]] <- value
参数----------Arguments----------
参数:x
a factor
一个因素
参数:...
a specification of indices – see Extract.
规范的指标 - Extract。
参数:drop
logical. If true, unused levels are dropped.
逻辑。如果情况属实,未使用的水平下降。
参数:value
character: a set of levels. Factor values are coerced to character.
特点:一组的水平。因子值的强制性质。
Details
详情----------Details----------
When unused levels are dropped the ordering of the remaining levels is preserved.
当未使用的水平下降,其余级别的顺序保存。
If value is not in levels(x), a missing value is assigned with a warning.
value如果不levels(x),缺失值分配一个警告。
Any contrasts assigned to the factor are preserved unless drop=TRUE.
除非contrasts任何drop=TRUE分配到的因素将被保留。
The [[ method supports argument exact.
[[方法支持参数exact。
值----------Value----------
A factor with the same set of levels as x unless drop=TRUE.
与同一组的水平的一个因素x除非drop=TRUE。
参见----------See Also----------
factor, Extract.
factor,Extract。
举例----------Examples----------
## following example(factor)[#下面的例子(因子)]
(ff <- factor(substring("statistics", 1:10, 1:10), levels=letters))
ff[, drop=TRUE]
factor(letters[7:10])[2:3, drop = TRUE]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|