R 語言中的 length() 函數用於獲取或設置向量(列表)或其他對象的長度。
用法: length(x)
參數:
x: vector or object
範例1:
Python3
# R program to illustrate
# length function
# Specifying some vectors
x <- c(6)
y <- c(1, 2, 3, 4, 5)
# Calling length() function
# to get length of the vectors
length(x)
length(y)
輸出:
[1] 1 [1] 5
範例2:
Python3
# R program to illustrate
# length function
# Specifying some vectors
x <- c(3)
y <- c(1, 2, 3, 4, 5)
z <- c(1, 2, 3, 4, 5)
# Setting length of the vector
length(x) <- 2
length(y) <- 7
length(z) <- 3
# Getting elements of the
# new vectors
x
y
z
輸出:
[1] 3 NA [1] 1 2 3 4 5 NA NA [1] 1 2 3
相關用法
- R語言 rainbow()用法及代碼示例
- R語言 expand.grid()用法及代碼示例
- R語言 cov()用法及代碼示例
- R語言 cor()用法及代碼示例
- R語言 sequence()用法及代碼示例
- R語言 match()用法及代碼示例
- R語言 strftime()用法及代碼示例
- R語言 determinant()用法及代碼示例
- R語言 charmatch()用法及代碼示例
- R語言 col()用法及代碼示例
- R語言 det()用法及代碼示例
- R語言 row()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting and Setting Length of the Vectors in R Programming – length() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。