当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 tail()用法及代码示例


R 语言中的 tail() 函数用于获取向量、矩阵、表、 DataFrame 或函数的最后部分。

用法: tail(x, n)

参数:
x:指定的数据类型
n:需要打印的行数

范例1:


# R program to illustrate
# tail function
  
# Calling the tail() function to 
# get the last iris demo dataset
tail(iris)

输出:

    Sepal.Length Sepal.Width Petal.Length Petal.Width   Species
145          6.7         3.3          5.7         2.5 virginica
146          6.7         3.0          5.2         2.3 virginica
147          6.3         2.5          5.0         1.9 virginica
148          6.5         3.0          5.2         2.0 virginica
149          6.2         3.4          5.4         2.3 virginica
150          5.9         3.0          5.1         1.8 virginica

范例2:


# R program to illustrate
# tail function
  
# Calling the tail() function to 
# get the last iris demo dataset
# in 4 rows
tail(iris, 4)

输出:

    Sepal.Length Sepal.Width Petal.Length Petal.Width   Species
147          6.3         2.5          5.0         1.9 virginica
148          6.5         3.0          5.2         2.0 virginica
149          6.2         3.4          5.4         2.3 virginica
150          5.9         3.0          5.1         1.8 virginica

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get the Last parts of a Data Set in R Programming – tail() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。