Graded: 6.6, 6.12, 6.20, 6.28, 6.44, 6.48
6.6 2010 Healthcare Law.
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.
Answer
False: For this sample, we are certain that 46% of this sample supports the decision.
True: This sample allows us to make an inference about the population.
False: Our confidence interval gives us a range of possible values for the true population proportions.
False: It would be lower, since we are lowering our confidence.
6.12 Legalization of marijuana, Part I.
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.
Answer
The 48% is a sample statistic. That is, it was calculated based on a 1,259 sample of the total US population.
n <- 1259
p <- 0.48
cip <- 0.95 # Defining our confidence interval percentage
SE <- ((p * (1 - p)) / n) ^ 0.5
t <- qt(cip + (1 - cip)/2, n - 1)
ME <- t * SE
ci <- c(p - ME, p + ME)
ci
## [1] 0.4523767 0.5076233
The 95% confidence interval for the proportion of US residents who think marijuana should be made legal is from 45.24% to 50.76%.
it is true, because we are looking at a proportion p_hat. sample observations are independent and the sample size is large enough such that np>= 10, n(1-p)>=10
False: We cannot reject the hypothesis that the proportion of Americans who think marijuana should be legalized is above 50%
6.20 Legalize Marijuana, Part II.
As discussed in Exercise 6.12, 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
Since ME=t???SE
ME <- 0.02
n <- (p * (1 - p ) * t ^ 2) / ME ^ 2
n
## [1] 2401.689
The survey should require 2402 Americans.
6.28 Sleep deprivation, CA vs. OR, Part I.
According to a report on sleep deprivation by the Centers for Disease Control and Prevention, the proportion of California residents who reported insufficient 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.
Answer
pCA <- 0.08
nCA <- 11545
pOR <- 0.088
nOR <- 4691
cip <- 0.95 # Defining confidence interval
pDiff <- pOR - pCA
# Compute standard error and margin of error for the proportion difference.
SE <- ( ((pCA * (1 - pCA)) / nCA) + ((pOR * (1 - pOR)) / nOR)) ^ 0.5
z <- qnorm(cip + (1 - cip) / 2)
me <-z * SE
# Construct the 95% confidence interval.
ci <- c(pDiff - me, pDiff + me )
The 95% confidence interval for the difference between the proportions of Californians and Oregonians who are sleep deprived is from -0.0015 to 0.0175.
This interval overlaps 0, therefore we can conclude with a 95% confidence level that the proportions are not statistically different. In other words, CA and OR population proportion might be equal given the results from this sample.
6.44 Barking deer.
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.
Answer
H0: The sites where barking deer forage were distributed according to the portion of land in each habitat
HA: The sites where barking deer forage is not every distributed across the habitats of the region.
We can use a Chi-square test for one-way table.
Independence: We will have to assume it
Sample size / distribution: In our expected cases scenario, all habitats have at least 5 expected cases, therefore this condition is satisfied since it has at least 5 expected cases.
habitats <- c(4, 16, 67, 345)
region <- c(20.45, 62.62, 168.70, 174.23)
k <- length(habitats)
df <- k - 1
# Compute the chi2 test statistic
chi <- (habitats - region ) ^ 2 / region
chi <- sum(chi)
# check the chi2 test statistic and find p-val
p_Val <- 1 - pchisq(chi, df = df)
p_Val
## [1] 0
The chi-Square value is large enough that the p-value is 0. Hence, we conclude that there is convincing evidence the barking deer forage in certain habitats over others.
6.48 Coffee and Depression.
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.
Answer
The Chi-squared test for two-way tables is appropriate for evaluating if there is an association between coffee intake and depression.
The hypotheses for the Chi-squared two-way table test are as follows.
H0: There is no association between caffeinated coffee consumption and depression.
HA: There is an association between caffeinated coffee consumption and depression.
yes_dep <- 2607
no_dep <- 48132
total_dep <- yes_dep + no_dep
total_dep
## [1] 50739
The overall proportion of women who do suffer from depression is 5.14%. The overall proportion of women who do not suffer from depression is 94.86%
ntot2cup <- 6617
Ek <- (yes_dep * ntot2cup) / total_dep
chipart <- ((373 - Ek) ^ 2) / Ek
chipart
## [1] 3.205914
The expected count for the highlighted value is 3.2059144
n <- 5
k <- 2
df <- (n-1)*(k-1)
chi2 <- 20.93
p_value <- 1 - pchisq(chi2, df)
p_value
## [1] 0.0003269507
The p-value is 0.0003269507
Since the p-value is below 0.05, we cannot reject the null hypothesis that coffee doesn’t cause depression.
Based on the above statement, I agree with it. That is, according to the chi-square test, we found no link between coffee consumption and depression.