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


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


R 语言中的 colSums() 函数用于计算矩阵或数组列的总和。

用法: colSums (x, na.rm = FALSE, dims = 1)

参数:
x:矩阵或数组
dims:这是一个整数值,其维度被视为 ‘columns’ 求和。它超过尺寸 1:dims。

范例1:


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

输出:

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

[1]  6 15 24

范例2:


# R program to illustrate
# colSums function
  
# Initializing a 3D array
x <- array(1:12, c(2, 3, 3))
  
# Getting the array representation
x
  
# Calling the colSums() function
colSums(x, dims = 1)
colSums(x, dims = 2)

输出:

,, 1

     [, 1] [, 2] [, 3]
[1, ]    1    3    5
[2, ]    2    4    6,, 2

     [, 1] [, 2] [, 3]
[1, ]    7    9   11
[2, ]    8   10   12,, 3

     [, 1] [, 2] [, 3]
[1, ]    1    3    5
[2, ]    2    4    6

     [, 1] [, 2] [, 3]
[1, ]    3   15    3
[2, ]    7   19    7
[3, ]   11   23   11

[1] 21 57 21

相关用法


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