corner(useful)
corner()所属R语言包:useful
Grabs a corner of a data set
抓住一个角落的数据集
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Display a corner section of a rectangular data set
显示一个角部的矩形数据集
用法----------Usage----------
corner(x, ...)
## S3 method for class 'data.frame'
corner(x, r = 5L, c = 5L,
corner = "topleft", ...)
## S3 method for class 'matrix'
corner(x, r = 5L, c = 5L,
corner = "topleft", ...)
## S3 method for class 'table'
corner(x, r = 5L, c = 5L,
corner = "topleft", ...)
## Default S3 method:
corner(x, r = 5L, ...)
参数----------Arguments----------
参数:x
The data
数据
参数:r
Number of rows to display
要显示的行数
参数:c
Number of columns to show
列数显示
参数:corner
Which corner to grab. Posibble values are c("topleft", "bottomleft", "topright", "bottomright")
哪个角落,抢。 posibble值是c(“左上中,”bottomleft“,”topright“中,”bottomright“的)
参数:...
Arguments passed on to other functions
参数传递给其他函数
Details
详细信息----------Details----------
Displays a corner of a retangular data set such as a data.frame, martrix or table. If showing the right side or bottom, the order of the data is preserved.
显示一个角落的一个retangular的数据集,如数据框,martrix或表。如果示出了合适的侧部或底部,被保存的数据的顺序。
The default method reverts to simply calling head
默认的方法恢复简单地调用head
值----------Value----------
... The part of the data set that was requested. The size depends on r and c and the position depends on corner.
...被请求的数据集的一部分。大小取决于R和C的位置取决于角落。
(作者)----------Author(s)----------
Jared P. Lander www.jaredlander.com
参见----------See Also----------
head tail topleft topright bottomleft bottomright left right
headtailtoplefttoprightbottomleftbottomrightleftright
实例----------Examples----------
data(diamonds)
head(diamonds) # displays all columns[显示所有列]
corner(diamonds) # displays first 5 rows and only the first 5 columns[显示第5行和第5列]
corner(diamonds, corner="bottomleft") # displays the last 5 rows and the first 5 columns[显示最后5个行和第5列]
corner(diamonds, corner="topright") # displays the first 5 rows and the last 5 columns[显示的第5行和最后5个列]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|