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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。