找回密码
 注册
查看: 2103|回复: 0

R语言:droplevels()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 18:34:24 | 显示全部楼层 |阅读模式
droplevels(base)
droplevels()所属R语言包:base

                                        droplevels
                                         droplevels

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

The function droplevels is used to drop unused levels from a factor or, more commonly, from factors in a data frame.
功能droplevels下降因素,或者更常见的因素,在一个数据框,未使用的水平。


用法----------Usage----------


## S3 method for class 'factor'
droplevels(x,...)
## S3 method for class 'data.frame'
droplevels(x, except, ...)



参数----------Arguments----------

参数:x
an object from which to drop unused factor levels.
未使用的因子水平下降的一个对象。


参数:...
further arguments passed to methods
进一步传递给方法的参数


参数:except
indices of columns from which not to drop levels
这不是砸水平指数列


Details

详情----------Details----------

The method for class "factor" is essentially equivalent to factor(x).
"factor"类的方法基本上相当于factor(x)。

The except argument follow the usual indexing rules.
except参数,按照通常的索引规则。


值----------Value----------

droplevels returns an object of the same class as x
droplevelsx返回的同一类的对象


注意----------Note----------

This function was introduced in R 2.12.0. It is primarily intended for cases where one or more factors in a data frame contains only elements from a reduced level set after subsetting.  (Notice that subsetting does not in general drop unused levels).  By default, levels are dropped from all factors in a data frame, but the except argument allows you to specify columns for which this is not wanted.  
2.12.0在研发推出此功能。它主要用于数据框中的一个或多个因素,其中包含从后子集设置一个较低水平的唯一因素。 (请注意,不会在未使用的水平普遍下降的子集)。默认情况下,水平下降,从一个数据框中的所有因素,但except参数允许你指定这不想要的列。


参见----------See Also----------

subset for subsetting data frames. factor for definition of factors. drop for dropping array dimensions. drop1 for dropping terms from a model. [.factor for subsetting of factors.
subset子集的数据框。 factor因素的定义。 drop下降阵列尺寸。 drop1下降从模型。 [.factor因素子集。


举例----------Examples----------


aq <- transform(airquality, Month=factor(Month,labels=month.abb[5:9]))
aq <- subset(aq, Month != "Jul")
table(aq$Month)
table(droplevels(aq)$Month)

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-23 21:27 , Processed in 0.020775 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表