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


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


R语言中的row()函数用于获取矩阵的行号。

用法: row(x, as.factor=FALSE)

参数:
x:矩阵
作为因子:一个逻辑值,指示该值是否应作为列标签的因子(如果需要创建)而不是作为数字返回

范例1:


# R program to illustrate
# row function
  
# Initializing a matrix with
# 2 rows and 2 columns
x <- matrix(c(1, 2, 3, 4), 2, 2)
  
# Getting the matrix representation
x
  
# Calling the row() function
row(x)

输出:

$Rscript main.r
     [, 1] [, 2]
[1, ]    1    3
[2, ]    2    4

     [, 1] [, 2]
[1, ]    1    1
[2, ]    2    2

范例2:


# R program to illustrate
# row function
  
# Initializing a matrix with
# 3 rows and 3 columns
x <- matrix(rep(1:12), 3, 3)
  
# Getting the matrix representation
x
  
# Calling the row() function
row(x)

输出:

    [, 1] [, 2] [, 3]
[1, ]    1    4    7
[2, ]    2    5    8
[3, ]    3    6    9

     [, 1] [, 2] [, 3]
[1, ]    1    1    1
[2, ]    2    2    2
[3, ]    3    3    3

相关用法


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