Section 2.1
9
69%
55.2 million
Inferential because we use the results of a survey representative of a random sample to make a generalization about the adults in America.
11
0.42 ; 0.61
55+
18-34
As age increases, the tendency to buy products made in America increases.
13
datt <- c(125, 324, 552, 1257, 2518)
rel.freqq <- datt/sum(datt)
categoriess <- c("Never", "Rarely", "Sometimes", "Most of time", "Always")
answerr <- data.frame(categoriess,rel.freqq)
answerr
## categoriess rel.freqq
## 1 Never 0.02617253
## 2 Rarely 0.06783920
## 3 Sometimes 0.11557789
## 4 Most of time 0.26319095
## 5 Always 0.52721943
52.7%
9.4%
barplot(datt,main="Seat Belt Usage",names=categoriess, col =c("red","blue","green","yellow","orange"))
barplot(rel.freqq,main="Seat Belt Usage",names=categoriess, col =c("red","blue","green","yellow","orange"))
pie(datt,main="Seat Belt Usage",labels=categoriess, col =c("red","blue","green","yellow","orange"))
15
dat <- c(377,192,132,81,243)
rel.freq <- dat/sum(dat)
categories <- c("More 1", "Up to 1", "Few a week", "Few a month", "Never")
answer <- data.frame(categories,rel.freq)
answer
## categories rel.freq
## 1 More 1 0.36780488
## 2 Up to 1 0.18731707
## 3 Few a week 0.12878049
## 4 Few a month 0.07902439
## 5 Never 0.23707317
0.2371
barplot(dat,main="Internet Usage",names=categories, col =c("red","blue","green","yellow","orange"))
barplot(rel.freq,main="Internet Usage(Relative Freq)",names=categories, col =c("red","blue","green","yellow","orange"))
pie(dat,main="Internet Usage",labels=categories, col =c("red","blue","green","yellow","orange"))
Section 2.2
9
8
2
15
4
15%
Bell shaped
10
4
9
17.3%
d)Right skewed
11
200
10
60-69 , 2; 70-79 , 3; 80-89 , 13; 90-99, 42; 100-109 , 58; 110-119, 40; 120-129 , 31; 130-139 ,8 ; 140-149, 2; 150-159 ,1
100-109
150-159
5.5%
No
12
200
0-199 ; 200-399 ; 400-599 ; 600-799 ; 800-999; 1000-1199; 1200-1399
0-199
Right skewed
This statement is erroneous because we need to take into account the populations of Texas and Vermont. We should divide the number of fatalities by the size of the populations separately for Texas and Vermont, and then compare the relative frequencies to arrive to a conclusion.
13
Likely right skewed. Most incomes will be on the left ($50.000 - $150.000) range, with fewer incomes on the right (millions).
Likely bell-shaped. Most scores will be on the middle range and the scores will taper off equally in both directions.
Likely right skewed. Most households will have 1 to 4 occupants, while fewer households will have more occupants.
Likely left skewed. Most Alzheimer patients will be older-aged and fewer patients will be younger.
14
Likely right skewed. Most people will consume around 0-6 drinks in a week, with fewer people consuming more.
Likely uniform. Most kids would be around ages 7-18, and their frequencies would be evenly distributed.
Likely left skewed. Most of the hearing-aid patients will be senior citizens, while fewer patients will be younger.
Likely bell shaped. Most males will be around 5’ 9.5" ft, while fewer males will be very shorter or taller.
15
dattt <- c(16, 18, 12, 3, 1)
rel.freqqq <- dattt/sum(dattt)
categoriesss <- c("Zero", "One", "Two", "Three", "Four")
answerrr <- data.frame(categoriesss,rel.freqqq)
answerrr
## categoriesss rel.freqqq
## 1 Zero 0.32
## 2 One 0.36
## 3 Two 0.24
## 4 Three 0.06
## 5 Four 0.02
24%
60%