Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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"

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now