Ten public school students had the following scores on their standardized reading test (scores are out of 500): 410, 450, 435, 375, 395, 255, 290, 105

Trent Carpenter

Trent Carpenter

Answered question

2020-11-16

Ten public school students had the following scores on their standardized reading test (scores are out of 500):
410, 450, 435, 375, 395, 255, 290, 105, 410, 385
(a) Compute the mean, median, and mode of this data.
(b) Compute the first and third quartiles for the data.
(c) What do you think is the best measure of center: the mean, median, or mode of the data? Justify your answer.

Answer & Explanation

Corben Pittman

Corben Pittman

Skilled2020-11-17Added 83 answers

Step 1
It is an important part of statistics . It is widely used .
Mean is defined as the average.
Median is defined as the middl
emost value of the observation such that half of the value lies above it and half below it .
Mode is defined as that value which has the maximum frequency .
Step 2
a)
R CODE :
x=c(410, 450, 435, 375, 395, 255, 290, 105, 410, 385)
mean(x)
median(x)
OUTPUT :
x=c(410, 450, 435, 375, 395, 255, 290, 105, 410, 385)
mean(x)
[1]351
median(x)
[1]390
There is no mode as all the values have same frequency equal to 1
The required mean is 351 and median is 390
b)
R CODE :
quantile(x,0.25)
quantile(x,0.75)
OUTPUT :
quantile(x,0.25)
25%
311.25
quantile(x,0.75)
75%
410
The first quartile of the data is 311.25
The third quartile of the data is 410
c)
Median is the best measure of central tendency as it tells the location of the central value .

Do you have a similar question?

Recalculate according to your conditions!

Ask your question.
Get an expert answer.

Let our experts help you. Answer in as fast as 15 minutes.

Didn't find what you were looking for?