head(utils)
head()所属R语言包:utils
Return the First or Last Part of an Object
返回对象的第一个或最后部分
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the first or last parts of a vector, matrix, table, data frame or function. Since head() and tail() are generic functions, they may also have been extended to other classes.
返回第一个或最后一个零件一个向量,矩阵,表,数据框或功能。由于head()和tail()是通用的功能,他们也可能已经扩展到其他类。
用法----------Usage----------
head(x, ...)
## Default S3 method:[默认方法]
head(x, n = 6L, ...)
## S3 method for class 'data.frame'
head(x, n = 6L, ...)
## S3 method for class 'matrix'
head(x, n = 6L, ...)
## S3 method for class 'ftable'
head(x, n = 6L, ...)
## S3 method for class 'table'
head(x, n = 6L, ...)
## S3 method for class 'function'
head(x, n = 6L, ...)
tail(x, ...)
## Default S3 method:[默认方法]
tail(x, n = 6L, ...)
## S3 method for class 'data.frame'
tail(x, n = 6L, ...)
## S3 method for class 'matrix'
tail(x, n = 6L, addrownums = TRUE, ...)
## S3 method for class 'ftable'
tail(x, n = 6L, addrownums = FALSE, ...)
## S3 method for class 'table'
tail(x, n = 6L, addrownums = TRUE, ...)
## S3 method for class 'function'
tail(x, n = 6L, ...)
参数----------Arguments----------
参数:x
an object
对象
参数:n
a single integer. If positive, size for the resulting object: number of elements for a vector (including lists), rows for a matrix or data frame or lines for a function. If negative, all but the n last/first number of elements of x.
一个整数。如果阳性所产生的对象,大小为:元素为向量(包括名单),矩阵或数据框或一个函数的行的行数。如果是负数,但n最后/第一x元素的数量。
参数:addrownums
if there are no row names, create them from the row numbers.
如果没有行名行号,创建。
参数:...
arguments to be passed to or from other methods.
参数被传递到或从其他方法。
Details
详情----------Details----------
For matrices, 2-dim tables and data frames, head() (tail()) returns the first (last) n rows when n > 0 or all but the last (first) n rows when n < 0. head.matrix() and tail.matrix() are exported. For functions, the lines of the deparsed function are returned as character strings.
对于矩阵,2昏暗的表和数据框,head()(时tail())返回第一个(最后一个)n行n > 0或全部,但最后(第一) n行n < 0。 head.matrix()和tail.matrix()出口。对于函数,的deparsed功能线作为字符串返回。
If a matrix has no row names, then tail() will add row names of the form "[n,]" to the result, so that it looks similar to the last lines of x when printed. Setting addrownums = FALSE suppresses this behaviour.
如果一个矩阵有没有行名称,然后tail()会的形式"[n,]"添加行名的结果,所以它看起来类似x打印时的最后几行。设置addrownums = FALSE抑制这种行为。
值----------Value----------
An object (usually) like x but generally smaller. For ftable objects x, a transformed format(x).
像x但一般规模较小的对象(通常)。 ftable对象x,转化format(x)。
作者(S)----------Author(s)----------
Patrick Burns, improved and corrected by R-Core. Negative argument
added by Vincent Goulet.
举例----------Examples----------
head(letters)
head(letters, n = -6L)
head(freeny.x, n = 10L)
head(freeny.y)
tail(letters)
tail(letters, n = -6L)
tail(freeny.x)
tail(freeny.y)
tail(library)
head(stats::ftable(Titanic))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|