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.
Yes , 46% of 1012 Americans agree +- 3% which is 46% - 49%.
No, Confidence Levels are only for sample population and not for the true population.
As sample size increases, Confidence level and Margin of Error will vary.
Yes , As Confidence Interval decreases the Margin of Error increases.
Legalization of marijuana, Part I. (6.10, p. 216) The 2010 General Social Survey asked 1,259 US res- idents: “Do you think the use of marijuana should be made legal, or not?” 48% of the respondents said it should be made legal.
48% is Sample Statistic as it represents 1259 residents
n <- 1259
p <- 0.48
z <- 1.96
se <- sqrt((p*(1-p))/n)
ci_l = p - (z*se)
ci_u = p + (z*se)
Yes, it is normally distributed.
No, It doesnt apply to majority of Americans. The percentage is between 45 - 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
ci <- 0.95
z <- qnorm(ci + ((1-ci)/2))
se <- p*(1-p)
n <- (se/(me/z)^2)
The number of Americans is 2397.
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.
n1 <- 11545
n2 <- 4691
p1 <- (8/100)
p2 <- (8.8/100)
z <- 1.96
s1 <- p1*(1-p1)
s2 <- p2*(1-p2)
SE <- sqrt((s1/n1)+(s2/n2))
CI_l <- (p2-p1) - 1.96 * (SE)
CI_u <- (p2-p1) + 1.96 * (SE)
The Confidence interval is (-0.1%,1.7%)
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.
H0 -> The barking deer forage preference is present for certain habitats H1 -> The barking deer forage preference is not present for certain habitats
Chi-square test
The independence condition is satisfied.
n <- 4
df <- n -1
tot <- 426
Expected_woods <- round(((4*100)/tot),1)
Expected_grass <- round(((16*100)/tot),1)
Expected_decid <- round(((61*100)/tot),1)
Expected_other <- round(((345*100)/tot),1)
Actual_woods <- 4.8
Actual_grass <- 14.7
Actual_decid <- 39.6
Actual_other <- 100 - (Actual_woods+Actual_grass+Actual_decid)
Z_Woods <- ((Expected_woods - Actual_woods)^2)/Actual_woods
Z_Grass <- ((Expected_grass - Actual_grass)^2)/Actual_grass
Z_Decid <- ((Expected_decid - Actual_decid)^2)/Actual_decid
Z_Other <- ((Expected_other - Actual_other)^2)/Actual_other
Z_Total <- Z_Woods + Z_Grass + Z_Decid + Z_Other
hyp_result <- 1 - pchisq(Z_Total,df)
The result of Chi square test is 2.14% which is less than 5%. So Null hypothesis is rejected and conclusion is that barking deer doesnt prefer to forage over certain habitats.
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.
{}
Chi-square test for two way table can be used for this example.
H0 -> The reason for depression is women is the coffee consumption. H1 -> The reason for depression is women is not the coffee consumption.
total_women <- 50739
dep_women <- 2607
not_dep_women <- 48132
dep_women_proportion <- dep_women/total_women
not_dep_women_proportion <- not_dep_women/total_women
The women who suffer from depression is 5.1% and do not suffer from depression is 94.8%
exp_count_caffeine <- 6617 * 0.0514
round(exp_count_caffeine,0)
## [1] 340
obs_count_caffeine <- 373
round(obs_count_caffeine,0)
## [1] 373
form_diff <- ((obs_count_caffeine - exp_count_caffeine)^2)/exp_count_caffeine
The contribution is 3.17
df <- 4
p_val <- 1 - pchisq(20.93,df)
The value is 0.000327
Since p-value is lesser than 5 % We reject NUll Hypothesis. caffeine is a reason for women depression based on study.
Agreed , Based on the conclusion there is a relationship between caffeine and depression.