Median = 2209
Mode = 0
Median = 40.76
Mode = 0
Median = 3830
Mode = 4090
Median = 266
Mode = 260
Mean = Median
Mean < Median
Sample Variance = 36; Standard Deviation = 6
Sample Variance = 100; Standard Deviation = 10
Population Variance = 16; Standard Deviation 4
Population Variance = 64; Standard Deviation = 8
Sample Variance = 196; Standard Deviation = 14
Population Variance = 25; Standard Deviation = 5
Range = 25 Sample Standard Deviation = 8.43
The Z score for the 32-35 weeks baby is -0.3 and that for the 40 weeks is -0.43. The 40 weeks baby weighs less.
The 75 inch man
Johnson, because the Z value was greater
Dario’s car had the most convining victory
239
15)a) 15% of males between 3 to 5 months of age have a head circumference lower than 41 cm.
90% of the females of 2 years of age have a waist circumeference lower than 52.7 cm
10% or lower of age group 20-29 have height as 166.8, 25% or lower have 171.5, 50% or lower have 176.7, 75% or lower have 181.4 and 90% or lower have 186.8 - and so on.
Q2 = 466; Q1 = 433 ; Q3 = 489.5 IQR = 56.5 UF = 574.25
Right-skewed distribution Median/Q2 = 3 ; Q1 = 1 ; Q3 = 6 Min = 0 ; Max = 16
4)Symmetric Distribution Median/Q2 = 5; Q1 = 2 ; Q3 = 7 Min = -1 ; Max = 11
my_data <- c(60, 68, 77, 89, 98)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 60 68 77 89 98
max(my_data)
## [1] 98
min(my_data)
## [1] 60
my_data <- c(110, 140, 157, 173, 205)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 110 140 157 173 205
max(my_data)
## [1] 205
min(my_data)
## [1] 110
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)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 42.0 50.5 54.5 57.5 69.0
max(my_data)
## [1] 69
min(my_data)
## [1] 42
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)
boxplot(my_data, horizontal = T)
fivenum(my_data)
## [1] 7.20 9.05 10.00 11.20 16.40
max(my_data)
## [1] 16.4
min(my_data)
## [1] 7.2
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
summary(cars)
## speed dist
## Min. : 4.0 Min. : 2.00
## 1st Qu.:12.0 1st Qu.: 26.00
## Median :15.0 Median : 36.00
## Mean :15.4 Mean : 42.98
## 3rd Qu.:19.0 3rd Qu.: 56.00
## Max. :25.0 Max. :120.00
You can also embed plots, for example:
Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.