R语言中的nrow()函数用于返回指定矩阵的行数。
用法: nrow(x)
参数:
x: matrix, vector, array or data frame
范例1:
Python3
# R program to illustrate
# nrow function
# Getting R Biochemical Oxygen Demand Dataset
BOD
# Calling nrow() function to
# get the number of rows
nrow(BOD)
输出:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 [1] 6
范例2:
Python3
# R program to illustrate
# nrow function
# Specifying a matrix
x <- matrix(c(1, 2, 3, 4), 1, 4)
# Calling the nrow() function
nrow(x)
输出:
[1] 1
相关用法
- R语言 ncol()用法及代码示例
- R语言 max()用法及代码示例
- R语言 min()用法及代码示例
- R语言 get()用法及代码示例
- R语言 names()用法及代码示例
- R语言 mode()用法及代码示例
- R语言 row()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 args()用法及代码示例
- R语言 nlevels()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.factor()用法及代码示例
- R语言 unique()用法及代码示例
- R语言 str()用法及代码示例
- R语言 cumsum()用法及代码示例
- R语言 order()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get the number of rows of an Object in R Programming – nrow() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。