Summary Statistics
AA = c(2, 3, 4, 4, 2, 6)
What of the following would you use to calculate the median of vector AA in
R?
Hint* if this code is confusing, copy and paste the code here into RStudio. Pay
attention to spaces within the code.
median (AA)
mean(AA)
median[AA]
median(AA)