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.
=> False, we are 100% certain of the results released by the Gallup poll. No need for a confidence interval.
=> True with a 3% margin of error, the poll result toward 43% and 49% of Americans supporting the decision with a 95% confidence interval.
=> True, sample proportion will be within the confidence interval.
=> False the margin of error will be lower the confidence interval is smaller.
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.
=> 48% is a sample statistic as this isn’t the entire USA Population.
n <- 1259
p <- 0.48
cl <- 0.95
se <- (((p) * (1-p)) / (n)) ^ (0.5)
se
## [1] 0.01408022
ubound <- 0.48 + 1.96 * se
lbound <- 0.48 - 1.96 * se
c(lbound, ubound)
## [1] 0.4524028 0.5075972
=> lower and upper bounds are 0.4524028 0.5075972
ph <- n*p
ph
## [1] 604.32
pha <- n*(1-p)
pha
## [1] 654.68
=> 1259 * .48 > 10 and 1259 * 0.52 > 10 so it is true.
=> There is evidence towards the opposite. However, it’s possible considering the upper tail of our confidence interval 0.5075972 is 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?
a <-(p * (1-p)) / (0.02 / 1.96)^ 2
a
## [1] 2397.158
=> at least 2397 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 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.
ca <- .08
n_ca <- 11545
or <- .088
n_or <- 4691
se_ca_or <- sqrt(((ca * (1 - ca)) / n_ca) + ((or * (1 - or) / n_or)))
me <- 1.96 * se_ca_or
lbound <- 0.088 - 0.08 - me
ubound <- 0.088 - 0.08 + me
c(lbound, ubound)
## [1] -0.001498128 0.017498128
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.
Woods Cultivated grassplot Deciduous forests Other Total
4 16 67 345 426
=> Barking deer doesn’t prefer to certain habitats, barking deer prefer certain habitats over others for forage.
=> A chi-square test may be used to answer.
=> Independent of each case that contributes a count to the table must be independent of all the other cases in the table. Sample size / distribution. Each scenario must have at least 5 instance.
obs_reported <- c(4, 16, 67, 345)
obs_ratio <- c(0.048*426, 0.147*426, 0.396*426, 0.409*426)
chi_deer <- sum((obs_reported - obs_ratio ) ^ 2 / obs_ratio)
p_value_d <- 1 - pchisq(chi_deer, 3)
p_value_d
## [1] 0
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.
Caffeinated coffee consumption
≤ 1 2-6 1 2-3 ≥ 4
cup/week cups/week cup/day cups/day cups/day Total
Yes 670 373 905 564 95 2,607 No 11,545 6,244 16,329 11,726 2,288 48,132 Total 12,215 6,617 17,234 12,290 2,383 50,739
=> A chi-square test is best suited for the find out to determine the association between coffee intake and deppression.
=>There is no association between coffee intake and depression
propOfWomenWithDep = 2607/50739
propOfWomenWithoutDep = 1 - propOfWomenWithDep
propOfWomenWithDep
## [1] 0.05138059
propOfWomenWithoutDep
## [1] 0.9486194
groups = 5
dF = 4
expected = propOfWomenWithDep*6617
cellFactor = (373 - expected)^2/expected
cellFactor
## [1] 3.205914
pValue = pchisq(20.93,dF,lower.tail = FALSE)
pValue
## [1] 0.0003269507
=> The null hypotheses is rejected that there is no association between the coffee intake and depression.
=> Agree, there are many ordinal levels of clinical depression which we didn’t take into account, which may shed more light on caffeine or depression.
Rpubs => https://rpubs.com/gunduzhazal/822485