CUNY MSDS 606 Week 6 Homework
CUNY MSDS 606 Week 6 Homework
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.
a) 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, however it is technically true because we know what % of the sample believes it to be true and by association know that this figure is between those figures.
b) 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
c) 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
d) The margin of error at a 90% confidence level would be higher than 3%.
False
6.12 Legalization of marijuana, Part I.
6.20 Legalize Marijuana, Part II.
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.
- Calculate Standard Error
SE = \(\sqrt{\frac{0.08\ \cdot\ 0.92}{11545} + \frac{0.088\ \cdot\ 0.912}{4691}}\)
\(\Downarrow\)
SE = \(\sqrt{\frac{0.0736}{11545} + \frac{0.0803}{4691}}\)
\(\Downarrow\)
SE = 0.0048
- Calculate Pooled Point Estimate
CA 8% of 11,545 = 923.6 \(\Rightarrow\) 924 People OR 8.8% of 4,691 = 412.8 \(\Rightarrow\) 413 People
Pooled Proportion = \(\frac{924 + 413}{11,545 + 4,691}\)
\(\Downarrow\)
Pooled Proportion = \(\frac{1337}{16,236}\)
\(\Downarrow\)
Pooled Proportion = 8.2%
- Calculate Confidence Interval
CI = Point Estimate \(\pm\) z* SE
CI = 0.082 \(\pm\) 1.96 0.0048
\(\Downarrow\)
CI = (7.3% , 9.1%)
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.
Woods | Cultivated grassplot | Deciduous forests | Other | Total |
---|---|---|---|---|
4 | 16 | 67 | 345 | 426 |
0.9% | 3.8% | 15.7% | 81.0% | 100% |
bdf <- data.frame("Habitat" = c("Woods", "Cultivated Grassplot", "Deciduous Forests", "Other"), "Count" = c(4, 16, 67, 345), "Proportion" = c(0.09, 0.038, 0.157, 0.81))
bdf
## Habitat Count Proportion
## 1 Woods 4 0.090
## 2 Cultivated Grassplot 16 0.038
## 3 Deciduous Forests 67 0.157
## 4 Other 345 0.810
a) Write the hypotheses for testing if barking deer prefer to forage in certain habitats over others.
Hypotheses:
H0 = Barking deer have no preference in foraging habitats.
HA = Barking deer prefer some foraging habitats over others.
Hypotheses (mathematical):
H0 = pw = pgp = pdf = po
HA = the proportions of foraging preferences are not equal
b) What type of test can we use to answer this research question?
ANOVA
c) Check if the assumptions and conditions required for this test are satisfied.
The description does not indicate how the sample was collected or if the researchers had identified / tagged the individual deer so it is not possible to confirm that there is not duplication, therefor conditions are not satisfied.
d) 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.
Proceeding as though conditions are met
- Calculate Standard Error
bdf$Reciprop <- 1-bdf$Proportion
bdf$propbyrecip <- bdf$Proportion * bdf$Reciprop
bdf$under <- bdf$propbyrecip / 426
bdf
## Habitat Count Proportion Reciprop propbyrecip under
## 1 Woods 4 0.090 0.910 0.081900 1.922535e-04
## 2 Cultivated Grassplot 16 0.038 0.962 0.036556 8.581221e-05
## 3 Deciduous Forests 67 0.157 0.843 0.132351 3.106831e-04
## 4 Other 345 0.810 0.190 0.153900 3.612676e-04
under <- sum(bdf$under)
SE <- sqrt(under)
paste("The Standard Error for these data is", SE)
## [1] "The Standard Error for these data is 0.0308223365747129"
- Calculate Pooled Point Estimate
pp <- sum(bdf$Count) / (426*4)
paste("The Pooled Proportion for these data is", pp)
## [1] "The Pooled Proportion for these data is 0.253521126760563"
- Calculate Test Statistic
Z = \(\frac{point\ estimate - null\ value}{SE}\)
\(\Downarrow\)
Z = \(\frac{0.2535 - 0}{0.0308}\)
\(\Downarrow\)
Z = 8.2305
With a Z score this high the null hypothesis can safely be rejected.
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 caffinated 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.
Caffeinated coffee consumption
Clinical Depression | \(\le\) 1 / wk | 2-6 / wk | 1 / day | 2-3 / day | \(\ge\) 4 / day |
---|---|---|---|---|---|
Yes | 670 | 373 | 905 | 564 | 95 |
No | 11,545 | 6,244 | 16,326 | 11,726 | 2,288 |
Total | 12,215 | 6,617 | 17,234 | 12,290 | 2,383 |
cdf <- data.frame("Consumption" = c("< 2 cups/wk", "2-6 cups/wk", "1 cup/day", "2-3 cups/day", ">3 cups/day"), "Depressed" = c(670, 373, 905, 564, 95), "Not Depressed" = c(11545, 6244, 16326, 11726, 2288), "Total" = c(12215, 6617, 17234, 12290, 2383 ))
a) What type of test is appropriate for evaluating if there is an association between coffee intake and depression?
Chi-Square
b) Write the hypotheses for the test you identified in part (a).
Hypotheses:
H0 = Caffeinated coffee consumption has no impact on clinical depression in women.
HA = Caffeinated coffee consuption has an impact on clinical depression in women.
c) Calculate the overall proportion of women who do and do not suffer from depression.
tot_dep <- sum(cdf$Depressed)/sum(cdf$Total)
tot_not <- sum(cdf$Not.Depressed)/sum(cdf$Total)
paste0((round(tot_dep*100,1)), "% of women in the study suffered depression while ", round(tot_not*100,1), "% did not.")
## [1] "5.1% of women in the study suffered depression while 94.9% did not."
d) 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.
The expected count is the count if we assume that the null hypothesis is true, which would be 5.1% as the null hypothesis is that there is no impact. Expected count = 338.
contribution <- ((373-338)^2)/338
paste("The contribution of the highlighted cell to the test statistic is", round(contribution,2))
## [1] "The contribution of the highlighted cell to the test statistic is 3.62"
e) The test statistic is #2 = 20.93. What is the p-value?
Less than 0.001.
f) What is the conclusion of the hypothesis test?
Z = \(\frac{point estimate - null value}{SE of point estimate}\)
Expected / null proportion can be estimated by looking at the total depressed by total participants
null_prop <- sum(cdf$Depressed) / sum(cdf$Total)
paste("The expected / null proportion to apply for this test is", round(null_prop,2))
## [1] "The expected / null proportion to apply for this test is 0.05"
I can now create expected / null values for each group and calculate the Z score
# create null values based
cdf$null_vals <- ceiling(cdf$Total * null_prop)
# subtract null from Depressed
cdf$znum <- cdf$Depressed - cdf$null_vals
# square root of null value
cdf$zden <- sqrt(cdf$null_vals)
# calculate Z scores
cdf$Z_score <- cdf$znum / cdf$zden
# calculate Z squares
cdf$Z_square <- cdf$Z_score^2
cdf
## Consumption Depressed Not.Depressed Total null_vals znum zden
## 1 < 2 cups/wk 670 11545 12215 628 42 25.05993
## 2 2-6 cups/wk 373 6244 6617 340 33 18.43909
## 3 1 cup/day 905 16326 17234 886 19 29.76575
## 4 2-3 cups/day 564 11726 12290 632 -68 25.13961
## 5 >3 cups/day 95 2288 2383 123 -28 11.09054
## Z_score Z_square
## 1 1.6759825 2.8089172
## 2 1.7896763 3.2029412
## 3 0.6383175 0.4074492
## 4 -2.7048948 7.3164557
## 5 -2.5246750 6.3739837
zt <- sum(cdf$Z_square)
paste("The test statistic for these data is", zt,2)
## [1] "The test statistic for these data is 20.109747019895 2"
The p-value here is also less than 0.001, so we can reject the null hypothesis.
g) 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 coffeee” based on just this study. Do you agree with this statement? Explain your reasoning.
Of course! It’s a single study that needs to be replicated, a basic step in the scientific method.