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


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


R 语言中的 col() 函数用于获取一个矩阵,该矩阵包含作为参数传递给它的矩阵的列数。

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

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

范例1:


# R program to illustrate
# col 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 col() function
col(x)

输出:

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

范例2:


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

输出:

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

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

相关用法


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