Answer: > exam_scores = c(98, 93, 85, 39, 91, 75, 5, 93, 79, 90)
Answer: > print(exam_scores)
Answer: > quantiles(exam_scores, probs=c(0.0, 0.25, 0.5, 0.75, 1.0));
Stan Smith Project 1 April 8, 2024Also add the values of the quartiles like this:
Q0: ??? Q1: ??? Q2: ??? Q3: ??? Q4: ???We want to know that you can find the requested information from the R output. Type the actual values of the quartiles read from the R output instead of ???.
Answer: > hist(exam_scores)Click on the resulting histogram window. Then click the button at the top of the R Console: Copy to the clipboard as a metafile, go to the Word document, and paste the graph at the end of your Word output.
Answer: > boxplot(exam_scores)Save the boxplot graph at the end of your Word file like you saved the histogram.