R Coding Challenges
Practice R step by step. Code, run tests, and ask the AI Tutor for hints.
Mean of a Vector
Write an R function solution(x) that returns the arithmetic mean of the numeric vector x. Example ...
Sample Variance
Write an R function solution(x) that returns the sample variance of the numeric vector x. Example ...
Median
Write an R function solution(x) that returns the median of the numeric vector x. Example solution(...