Write a R program to compute sum, mean and product of a given vector elements.
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"
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer