library(tinytex)

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.

  1. We are 95% confident that between 43% and 49% of Americans in this sample support the decision of the U.S. Supreme Court on the 2010 healthcare law. Answer: FALSE. The CI is applicable to the population and not a sample.

  1. We are 95% confident that between 43% and 49% of Americans support the decision of the U.S. Supreme Court on the 2010 healthcare law. Answer: TRUE. This statement explains the CI.

  1. If we considered many random samples of 1,012 Americans, and we calculated the sample proportions of those who support the decision of the U.S. Supreme Court, 95% of those sample proportions will be between 43% and 49%. Answer: FALSE. The true proportion is unknown.

  1. The margin of error at a 90% confidence level would be higher than 3%. Answer: FALSE. As the confidence level decreases, Margin of Error will increase.

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.

  1. Is 48% a sample statistic or a population parameter? Explain. Answer: 48% is a sample statistic.

  1. Construct a 95% confidence interval for the proportion of US residents who think marijuana should be made legal, and interpret it in the context of the data. Answer:
n <- 1259
p <- .48
z <- 1.96
SE <- sqrt((p*(1-p))/n) # Standard Error
Lower_CI <- p - (z * SE)
Upper_CI <- p + (z * SE)
CI <- c(Lower_CI, Upper_CI)
CI
## [1] 0.4524028 0.5075972

  1. A critic points out that this 95% confidence interval is only accurate if the statistic follows a normal distribution, or if the normal model is a good approximation. Is this true for these data? Explain. Answer: For the sampling distribution to be nearly normal, there are two required conditions: 1. Observations must be independent. 2. Success-failure condition must be met. Both conditions are present in our case.

  1. A news piece on this survey’s findings states, “Majority of Americans think marijuana should be legalized.” Based on your confidence interval, is this news piece’s statement justified? Answer: Yes, it is quite justified accounting for the fact that the upper limit of the CI is about 51% and being above 50%.

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?

p = 0.48
me = 0.02 # With Margin of Error - 2%
z = qnorm(0.975)
ze = me / z
n = (p *(1 - p)) / ze^2
round(n, 0)+ 1
## [1] 2398

Answer: Our survey should include about 2,398 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 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.

n_Cal <- 11545
n_Ore <- 4691
mean_Cal <- .08
mean_Ore <- .088
meandiff <- mean_Cal - mean_Ore
SE <- sqrt((((mean_Cal)*(1-mean_Cal)/n_Cal)+mean_Ore)*(1-mean_Ore)/(n_Ore))
z <- 1.96
Lower_CI <- meandiff-(z*SE)
Upper_CI <- meandiff+(z*SE)
CI <- c(Lower_CI, Upper_CI)
CI
## [1] -0.0161073298  0.0001073298

Answer: We see no significant evidence that there is difference in the sleep deprivation between California and Oregon residents.


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.

  1. Write the hypotheses for testing if barking deer prefer to forage in certain habitats over others. Answer: \({H_0}\): No difference between each forage category is present here. \({H_A}\): The difference with at least one of the forage categories exists here.

  1. What type of test can we use to answer this research question? Answer: This would be a Chi-Square test.

  1. Check if the assumptions and conditions required for this test are satisfied. Answer: Prior to performing a chi-square test, two conditions must be verified: independence and distribution in terms of sample size. The cases seem to be independent of each other but the sample distribution requirement is not present in the case of the woods category since they can only transpire four times.

  1. Do these data provide convincing evidence that barking deer prefer to forage in certain habitats over others? Conduct an appropriate hypothesis test to answer this research question. Answer:
n <-426 # total from table
observation <-c(4, 16, 67, 345)
expected <-c(n * 0.048, n * 0.147, n * 0.396, n * 0.409)
chisq <-sum((observation - expected) ^ 2 / expected)
df <-4-1
round(pchisq(chisq, df, lower.tail=FALSE), 60)
## [1] 1.1e-59

We reject \({H_0}\) in favor of \({H_A}\) since there’s a difference with at least one of the forage categories.


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.

  1. What type of test is appropriate for evaluating if there is an association between coffee intake and depression? Answer: Chi Square test is suitable.

  1. Write the hypotheses for the test you identified in part (a). Answer: \({H_0}\): There is no association between coffee consumption and depression. \({H_A}\): There is an association between coffee consumption and depression.

  1. Calculate the overall proportion of women who do and do not suffer from depression. Answer:
(round(p_depressed <- (2607/50739), 4))
## [1] 0.0514
(round(pnon_depressed <- (48132/50739), 4))
## [1] 0.9486

Roughly 5% suffer from depression while about 95% do not suffer from it.

  1. Identify the expected count for the highlighted cell, and calculate the contribution of this cell to the test statistic, i.e. (\(Observed - Expected) ^ 2 / Expected\)). Answer:
(round(expected <- p_depressed * 6617, 4))
## [1] 339.9854
observed <- 373
(round(test_stat <- ((observed - expected) ^ 2) / expected, 4))
## [1] 3.2059

The contribution of this cell is 3.2

  1. The test statistic is \(\chi^2=20.93\). What is the p-value? Answer:
p_value <- pchisq(20.93, 4)
(round(p_value <- 1 - p_value, 7))
## [1] 0.000327

Our p-vale is 0.0003

  1. What is the conclusion of the hypothesis test? Answer: Given the p-value of 0.0003 is less than 0.05, we will reject \({H_0}\) and accept \({H_A}\) affirming that there is an association between coffee consumption and depression.

  1. One of the authors of this study was quoted on the NY Times as saying it was “too early to recommend that women load up on extra coffee” based on just this study. Do you agree with this statement? Explain your reasoning. Answer: Agreed. There may be other possible variables which are not accounted for in this study.

End of File. Thank you.