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
相關用法
- R語言 head()用法及代碼示例
- R語言 legend()用法及代碼示例
- R語言 sample()用法及代碼示例
- R語言 data.matrix()用法及代碼示例
- R語言 with()用法及代碼示例
- R語言 levels()用法及代碼示例
- R語言 dim()用法及代碼示例
- R語言 names()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 structure()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 arrange()用法及代碼示例
- R語言 quantile()用法及代碼示例
- R語言 set.seed()用法及代碼示例
- R語言 glm()用法及代碼示例
- R語言 setdiff()用法及代碼示例
- R語言 arrayInd()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 nrow()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Get the Last parts of a Data Set in R Programming – tail() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。