Z score 40-week baby: (3300-3500)/470=-.426
The 40-week baby weighs less relative to the gestation period
Z score woman: (70-64.1)/3.8=1.55
The 75-inch man is relatively taller
Z score Herdandez: (2.27-3.929)/.775=-2.14
Johnson did better relative to his peers because his Z score was closest to 0 (the average z score)
Z score Power (112.57-112.8)/.131=-1.76
Power had the more convincing victory
1.5=(x-200)/26 x=239
Squared deviations 204.49
123.21 108.16 88.36 68.89 151.29 112.36 102.01 86.49 50.41 148.84 110.25 100 81 49 127.69 108.16 94.09 77.44 43.56
mean=101.79/19= 5.36 (one standard deviation) Blackie’s Z score (7.8-10.08)/5.36=-.43
5.7, 7.7, 7.8, 8.7, 8.9, 9.4, 9.5, 9.6, 9.6, 9.9, 10.0, 10.3, 10.6, 10.7, 11.0, 11.2, 11.7, 12.9, 13.0, 13.4 Q1= 9.15 Q2=9.95 Q3= 11.45
Q3-Q1=2.3 9.15-1.5(2.3)=5.7 11.45+1.5(2.3)=14.9 There are no outliers
my_data <- c(60, 63, 68, 68, 68,
75, 75, 77, 79, 89,
89, 89, 93, 94, 98)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 60 68 77 89 98
my_data <- c(110, 125, 140, 140,140,
150, 152, 157, 160, 173,
173, 173, 180, 180,205)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 110 140 157 173 205
my_data <- c(42, 43, 46, 46, 47,
47, 48, 49, 49, 50,
50, 51, 51, 51, 51,
52, 52, 54, 54, 54,
54, 54, 55, 55, 55,
55, 56, 56, 56, 57,
57, 57, 57, 58, 60,
61, 61, 61, 62, 64,
64, 65, 68, 69)
fivenum(my_data)
## [1] 42.0 50.5 54.5 57.5 69.0
boxplot(my_data, horizontal = T)
Five Number summary:42.0 50.5 54.5 57.5 69.0
The data is very slightly left skewed, but relatively symmetric
my_data <- c(7.2, 7.8, 7.8, 7.9, 8.1, 8.3,
8.5, 8.6, 8.6, 8.6, 8.7, 8.8,
9.0, 9.1, 9.2, 9.2, 9.2, 9.4,
9.4, 9.6, 9.7, 9.7, 9.9, 9.9,
10.0, 10.0, 10.0, 10.1, 10.2,10.3,
10.3, 10.3, 10.3, 10.7, 10.7, 10.9,
11.2, 11.2, 11.2, 11.3, 11.3, 11.3,
11.5, 11.5, 11.7, 12.4, 12.5, 13.6,
13.8, 14.4, 16.4)
fivenum(my_data)
## [1] 7.20 9.05 10.00 11.20 16.40
boxplot(my_data, horizontal = T)
C. The data is right skewed