2010 Healthcare Law. (6.48, p. 248)
False:A confidence interval is constructed to estimate the population proportion, not the sample proportion
True: A confidence interval is constructed to estimate the population propotion which is 46% ± 3%, or 43% to 49%.
True:The samples should be approximately the same.
False: The margin of error would be lower since the confidence level is lower.
Legalization of marijuana, Part I.
48% is a sample statistic as it describes the samples US residents
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%.
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.
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 ).
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: 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
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.
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.
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.
THe chi-square test for the two-way table can be used to evaluate if there is an association between coffee intake and depression
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.
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
observed <- 373
expected <- (2607/50739)*6617
hcell <- sum(((observed - expected)^2)/expected)
hcell
## [1] 3.205914
chisq <- 20.93
df <- (5-1)*(2-1)
pvalue <- 1-pchisq(chisq, df)
pvalue
## [1] 0.0003269507
We reject the null hypothesis that there is no effect on the rates of depression based on caffeine intake
I agree with author’s statement because this was an observational study. It cannot be used to demonstrate causation