R语言中的sum()函数用于返回作为参数传递给函数的值的相加
用法: sum(…)
参数:
……:数字或复数或逻辑向量
范例1:
# R program to illustrate
# sum function
# Creating Vectors
x <- c(10, 20, 30, 40)
y <- c(1.8, 2.4, 3.9)
z <- c(0, -2, 4, -6)
# Calling the sum() function
sum(x)
sum(y)
sum(z)
sum(x, y, z)
输出:
[1] 100 [1] 8.1 [1] -4 [1] 104.1
范例2:
# R program to illustrate
# sum function
# Calling the sum() function
sum(1:5) # Adding a range
sum(-1:-10)
sum(4:12)
输出:
[1] 15 [1] -55 [1] 72
相关用法
- R语言 prod()用法及代码示例
- R语言 args()用法及代码示例
- R语言 expand.grid()用法及代码示例
- R语言 seq_along()用法及代码示例
- R语言 setdiff()用法及代码示例
- R语言 points()用法及代码示例
- R语言 lines()用法及代码示例
- R语言 intersect()用法及代码示例
- R语言 setequal()用法及代码示例
- R语言 is.element()用法及代码示例
- R语言 union()用法及代码示例
- R语言 combine()用法及代码示例
- R语言 ls()用法及代码示例
- R语言 rm()用法及代码示例
- R语言 identical()用法及代码示例
- R语言 levels()用法及代码示例
- R语言 dim()用法及代码示例
- R语言 arrayInd()用法及代码示例
- R语言 ncol()用法及代码示例
- R语言 nrow()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Get Addition of the Objects passed as Arguments in R Programming – sum() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。