2010 Healthcare Law. (6.48, p. 248)

  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.

False:A confidence interval is constructed to estimate the population proportion, not the sample proportion

  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.

True: A confidence interval is constructed to estimate the population propotion which is 46% ± 3%, or 43% to 49%.

  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%.

True:The samples should be approximately the same.

  1. The margin of error at a 90% confidence level would be higher than 3%.

False: The margin of error would be lower since the confidence level is lower.


Legalization of marijuana, Part I.

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

48% is a sample statistic as it describes the samples US residents

  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.
n <- 1259
p <- 0.48
SE <- sqrt((p * (1-p))/n)
ME <- 1.96 * SE
ME
## [1] 0.02759723
p - ME
## [1] 0.4524028
p + ME
## [1] 0.5075972

At 95% confidence level, the confidence interval is (0.4524028,0.5075972). We are 95% confident that the proportion of US residents who think marijuana should be made legal is between 45.24% and 50.76%.

  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.

We can likely assume that the sample is a simple random draw from the population and the number of samples, 1259, is less than 10% of the population. Therefore the samples are independent.

n*p
## [1] 604.32
n*(1-p)
## [1] 654.68

The np and n(1-p) values are both greater than 10.The normal model is a good approximation for the data.

  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?

The sample results can be generalized to the greater population. The confidence interval is between 45% to 51% of Americans think that marijuana should be legalized which just barely covers half of Americans at the top of the range. It wouldn’t be entirely accurate to say that the majority support legalization.


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
SE <- ME / 1.96
n <- (p * (1-p)) / (SE^2) 
n
## [1] 2397.158

2398 Americans would need to be surveyed.


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_CA <- 0.08
p_OR <- 0.088

pprop <- p_CA - p_OR

n_CA <- 11545
n_OR <- 4691

SE_CA <- (p_CA * (1-p_CA)) / n_CA
SE_OR <- (p_OR * (1-p_OR)) / n_OR

SEprop <- sqrt(SE_CA + SE_OR)
ME <- 1.96 * SEprop 
ME
## [1] 0.009498128
pprop - ME
## [1] -0.01749813
pprop + ME
## [1] 0.001498128

The confidence interval is ( −0.0175 , 0.0015 ).

We are 95% confident that the difference between the proportion of Californians and Oregonians who are sleep deprived is between −0.0175 and 0.0015.

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.

H0: barking deer have no preference

p_woods = p_grassplot = p_forests = p_other

H1: barking deer prefer foraging in a specific type of habitat

p_woods - p_grassplot - p_forests - p_other != 0

  1. What type of test can we use to answer this research question?

The a chi-square test allows given a sample of cases that can be classified into several groups to determine if the sample is representative of the general population.

  1. Check if the assumptions and conditions required for this test are satisfied.
observed <- c(4, 16, 61, 345, 426)
expected_prop <- c(0.048, 0.147, 0.396, 1-0.048-0.147-0.396, 1)
expected <- expected_prop * 426
expected
## [1]  20.448  62.622 168.696 174.234 426.000

The behavior of the barking deer are likely independent and each expected value is above 5.

  1. Do these data provide convincing evidence that barking deer pre- fer to forage in certain habitats over others? Conduct an appro- priate hypothesis test to answer this research question.
k <- 4
df <- k-1
chisquaretest <- sum(((observed - expected)^2)/expected)
( p_value <- 1 - pchisq(chisquaretest, df) )
## [1] 0

The p value is 0 and therefore we can reject the null hypothesis that deer have no preference in the type of habitat where they forage.


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?

THe chi-square test for the two-way table can be used to evaluate if there is an association between coffee intake and depression

  1. Write the hypotheses for the test you identified in part (a).

H0: There is no difference in rates of depression in women based on caffeine consumption.

H1: There is a difference in rates of depression in women based on caffeine consumption.

  1. Calculate the overall proportion of women who do and do not suffer from depression.

Proportion of women who suffer from depression:

2607/50739
## [1] 0.05138059

Proportion of women who do not suffer from depression:

48132/50739
## [1] 0.9486194
  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\)).
observed <- 373
expected <- (2607/50739)*6617
hcell <- sum(((observed - expected)^2)/expected)
hcell
## [1] 3.205914
  1. The test statistic is \(\chi^2=20.93\). What is the p-value?
chisq <- 20.93
df <-  (5-1)*(2-1)
  
pvalue <- 1-pchisq(chisq, df)
pvalue
## [1] 0.0003269507
  1. What is the conclusion of the hypothesis test?

We reject the null hypothesis that there is no effect on the rates of depression based on caffeine intake

  1. One of the authors of this study was quoted on the NYTimes 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.

I agree with author’s statement because this was an observational study. It cannot be used to demonstrate causation