Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

R Programming: Compute sum, mean and product of a given vector elements

R Programming: Basic Exercise-23 with Solution

Write a R program to compute sum, mean and product of a given vector elements.

Sample Solution :

R Programming Code :

nums = c(10, 20, 30)
print('Original vector:')
print(nums)   
print(paste("Sum of vector elements:",sum(nums)))
print(paste("Mean of vector elements:",mean(nums)))
print(paste("Product of vector elements:",prod(nums)))

Sample Output:

[1] "Original vector:"
[1] 10 20 30
[1] "Sum of vector elements: 60"
[1] "Mean of vector elements: 20"
[1] "Product of vector elements: 6000"                         

R Programming Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a R program to create bell curve of a random normal distribution.
Next: Write a R program to create a list of heterogeneous data, which include character, numeric and logical vectors. Print the lists.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?