You can use R to calculate the sum of a list of numbers:
data = c(1,2,3,4,5) add_up = sum(data) print(add_up)
## [1] 15