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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。