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

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

[复制链接]
发表于 2012-2-17 10:25:36 | 显示全部楼层 |阅读模式
length(base)
length()所属R语言包:base

                                        Length of an Object
                                         一个对象的长度

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

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

Get or set the length of vectors (including lists) and factors, and of any other R object for which a method has been defined.
获取或设置向量(包括名单)和因素的长度,和任何其他的方法,其中一个已定义的R对象。


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


length(x)
length(x) <- value



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

参数:x
an R object.  For replacement, a vector or factor.
R对象。更换一个向量或因素。


参数:value
an integer: double values will be coerced to integer.
一个整数:双值将被强制转换为整数。


Details

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

Both functions are generic: you can write methods to handle specific classes of objects, see InternalMethods.  length<- has a "factor" method.
这两个函数是通用的:你可以写的方法来处理特定的类的对象,看到InternalMethods。 length<-"factor"方法。

The replacement form can be used to reset the length of a vector.  If a vector is shortened, extra values are discarded and when a vector is lengthened, it is padded out to its new length with NAs (nul for raw vectors).
更换的形式可以被用来复位向量的长度。如果一个向量缩短,多余的值将被丢弃和延长向量时,它填充NA(nul为原料向量)到新的长度。

Both are primitive functions.
无论是原始函数。


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

The default method currently returns an integer of length 1.  Since this may change in the future and may differ for other methods, programmers should not rely on it. (Should the length exceed the maximum representable integer, it is returned as NA.)
目前默认的方法返回一个长度为1integer。因为这可能会在未来改变为其他方法可能会有所不同,程序员不应该依赖于它。 (如果长度超过表示的最大整数,则返回NA。)

For vectors (including lists) and factors the length is the number of elements.  For an environment it is the number of objects in the environment, and NULL has length 0.  For expressions and pairlists (including language objects and dotlists) it is the length of the pairlist chain.  All other objects (including functions) have length one: note that for functions this differs from S.
长度为向量(包括名单)和因素是元素的数量。对于环境,它是在环境中的物体的数量,并NULL长度为0。为表达和pairlists(包括语言对象和dotlists的),它是的pairlist链的长度。所有其他对象(包括函数)长度:注意,这与不同职能

The replacement form removes all the attributes of x except its names.  
置换的形式,除了它的名字中删除x的所有属性。


参考文献----------References----------

The New S Language. Wadsworth &amp; Brooks/Cole.

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

nchar for counting the number of characters in character vectors.
nchar计数字符向量中的字符数。


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


length(diag(4))# = 16 (4 x 4)[= 16(4×4)]
length(options())# 12 or more[12个或更多]
length(y ~ x1 + x2 + x3)# 3[3]
length(expression(x, {y &lt;- x^2; y+2}, x^y)) # 3[3]

## from example(warpbreaks)[#例如(warpbreaks)]
require(stats)

fm1 <- lm(breaks ~ wool * tension, data = warpbreaks)
length(fm1$call) # 3, lm() and two arguments.[3,LM()两个参数。]
length(formula(fm1)) # 3, ~ lhs rhs[3&#12316;LHS RHS]

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


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

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-23 02:15 , Processed in 0.020765 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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