Find the median for the given sample
data.
The number of vehicles passing through a bank drive-up line during
each 15-minute period was recorded. The results are shown below.
Find the median number of vehicles going through the line in a
fifteen-minute period.
30 32 30 33
33 30 35 32
40 36 36 34
29 36 30 25
20 32 32 32
Question 4 options:
|
|||
|
|||
|
|||
|
Solution-:
Option (B) 32 is correct.
By using R-Software:
>
x=c(30,32,30,33,33,30,35,32,40,36,36,34,29,36,30,25,20,32,32,32);x
[1] 30 32 30 33 33 30 35 32 40 36 36 34 29 36 30 25 20 32 32
32
> Med=median(x);Med # Median
[1] 32
R-Code:
x=c(30,32,30,33,33,30,35,32,40,36,36,34,29,36,30,25,20,32,32,32);x
Med=median(x);Med # Median
Or
After arranging all observation in increasing order are as follows:
Here, (Odd )
Get Answers For Free
Most questions answered within 1 hours.