2010 Healthcare Law. (6.48, p. 248) On June 28, 2012 the U.S. Supreme Court upheld the much debated 2010 healthcare law, declaring it constitutional. A Gallup poll released the day after this decision indicates that 46% of 1,012 Americans agree with this decision. At a 95% confidence level, this sample has a 3% margin of error. Based on this information, determine if the following statements are true or false, and explain your reasoning.
Answers:
a. False, confidence level is calculated for the population, not for the sample.
b. True, as it’s given that 46% of the Americans sampled support the decision, and there is a 3% margin of error.
c. False, we cannot make claims about other random samples based on our confidence interval.
d. False, margin of error is a lower percentage as confidence level goes down (with the same standard error).
Legalization of marijuana, Part I. (6.10, p. 216) The 2010 General Social Survey asked 1,259 US residents: “Do you think the use of marijuana should be made legal, or not” 48% of the respondents said it should be made legal.
Answers:
a. 48% is a sample statistic because it is a proportion of the sample.
b.
std_err <- sqrt((0.48*(1-0.48))/1259)
t = qt(0.975,1258)
margin_of_err <- std_err*t
0.48 + margin_of_err # upper tail
## [1] 0.5076233
0.48 - margin_of_err # lower tail
## [1] 0.4523767
Legalize Marijuana, Part II. (6.16, p. 216) As discussed in Exercise above, the 2010 General Social Survey reported a sample where about 48% of US residents thought marijuana should be made legal. If we wanted to limit the margin of error of a 95% confidence interval to 2%, about how many Americans would we need to survey?
Answer:
margin_of_err <- 0.02
z <- 1.96 # Z-score for 95% confidence
std_err <- margin_of_err/z
n <- (.48*(1-.48))/std_err^2
n
## [1] 2397.158
2398 Americans
Sleep deprivation, CA vs. OR, Part I. (6.22, p. 226) According to a report on sleep deprivation by the Centers for Disease Control and Prevention, the proportion of California residents who reported insuffient rest or sleep during each of the preceding 30 days is 8.0%, while this proportion is 8.8% for Oregon residents. These data are based on simple random samples of 11,545 California and 4,691 Oregon residents. Calculate a 95% confidence interval for the difference between the proportions of Californians and Oregonians who are sleep deprived and interpret it in context of the data.
p_ore <- 0.088
n_ore <- 4691
p_cal <- 0.08
n_cal <- 11545
std_err <- sqrt((p_cal*(1-p_cal)/n_cal)+(p_ore*(1-p_ore)/n_ore))
z <- 1.96 # Z-score for 95% confidence
margin_of_err = z*std_err
-0.008 + margin_of_err
## [1] 0.001498128
-0.008 - margin_of_err
## [1] -0.01749813
0 is within the confidence interval so we fail to reject the null hypothesis – the difference in sleep deprivation is not significant.
Barking deer. (6.34, p. 239) Microhabitat factors associated with forage and bed sites of barking deer in Hainan Island, China were examined from 2001 to 2002. In this region woods make up 4.8% of the land, cultivated grass plot makes up 14.7% and deciduous forests makes up 39.6%. Of the 426 sites where the deer forage, 4 were categorized as woods, 16 as cultivated grassplot, and 61 as deciduous forests. The table below summarizes these data.
Answers:
a.
H0: Deer sites are proportionately distributed over the habitats.
p1: 0.048
p2: 0.147
p3: 0.396
p4: 0.409
H1: Deer sites are not proportionately distributed over the habitats.
b. Chi-square goodness of fit test
c.
The data is obtained from a random sample.
The data is categorized.
The expected frequency of each category must be at least 5.
d.
woods <- 426*.048
grass <- 426*.147
forest <- 426*.396
other <- 426*.409
proportions <- c(woods,grass,forest,other)
habitat = c(4,16,67,345)
k = 4
dF = 3
chi = 0
for(x in 1:4){
chi = chi + ((habitat[x]-proportions[x])^2/proportions[x])
}
p = pchisq(chi,dF,lower.tail = FALSE)
p
## [1] 1.144396e-59
We reject the null hypothesis in favor of the alternative hypothesis.
Coffee and Depression. (6.50, p. 248) Researchers conducted a study investigating the relationship between caffeinated coffee consumption and risk of depression in women. They collected data on 50,739 women free of depression symptoms at the start of the study in the year 1996, and these women were followed through 2006. The researchers used questionnaires to collect data on caffeinated coffee consumption, asked each individual about physician-diagnosed depression, and also asked about the use of antidepressants. The table below shows the distribution of incidences of depression by amount of caffeinated coffee consumption.
Answers:
a.
Chi-square test.
b.
H0: There is no association between caffeinated coffee consumption and depression.
H1: There is an association between caffeinated coffee consumption and depression.
k <- 5
df <- k - 1
dep <- 2607/50739
highlighted_cell <- dep * 6617
expected <- highlighted_cell
contribution <- (373 - expected)^2 / expected
contribution
## [1] 3.205914
The highlighted cell contributes 3.2.
p_value <- pchisq(20.93, df=df,lower.tail=FALSE)
p_value
## [1] 0.0003269507