Complete all Exercises, and submit answers to Questions on the Coursera platform.
In August of 2012, news outlets ranging from the Washington Post to the Huffington Post ran a story about the rise of atheism in America. The source for the story was a poll that asked people, “Irrespective of whether you attend a place of worship or not, would you say you are a religious person, not a religious person or a convinced atheist?” This type of question, which asks people to classify themselves in one way or another, is common in polling and generates categorical data. In this lab we take a look at the atheism survey and explore what’s at play when making inference about population proportions using categorical data.
In this lab we will explore the data using the dplyr
package and visualize it using the ggplot2
package for data visualization. The data can be found in the companion package for this course, statsr
.
Let’s load the packages.
library(statsr)
library(dplyr)
## Warning: package 'dplyr' was built under R version 3.2.5
library(ggplot2)
## Warning: package 'ggplot2' was built under R version 3.2.5
The press release for the poll, conducted by WIN-Gallup International, can be accessed here.
Take a moment to review the report then address the following questions.
Turn your attention to Table 6 (pages 15 and 16), which reports the sample size and response percentages for all 57 countries. While this is a useful format to summarize the data, we will base our analysis on the original data set of individual responses to the survey. Load this data set into R with the following command.
data(atheism)
atheism
correspond to?
To investigate the link between these two ways of organizing this data, take a look at the estimated proportion of atheists in the United States. Towards the bottom of Table 6, we see that this is 5%. We should be able to come to the same number using the atheism
data.
Create a new dataframe called us12
that contains only the rows in atheism
associated with respondents to the 2012 survey from the United States:
us12 <- atheism %>%
filter(nationality == "United States" , atheism$year == "2012")
print(str(us12))
## Classes 'tbl_df', 'tbl' and 'data.frame': 1002 obs. of 3 variables:
## $ nationality: Factor w/ 57 levels "Afghanistan",..: 55 55 55 55 55 55 55 55 55 55 ...
## $ response : Factor w/ 2 levels "atheist","non-atheist": 2 2 2 2 2 2 2 2 2 2 ...
## $ year : int 2012 2012 2012 2012 2012 2012 2012 2012 2012 2012 ...
## NULL
us12
. True / False: This percentage agrees with the percentage in Table~6.
# type your code for Question 7 here, and Knit
ath_us <- filter(us12, response == "atheist")
cat(sprintf('Atheism percentage: %5.2f\n',nrow(ath_us)*100/nrow(us12)))
## Atheism percentage: 4.99
As was hinted earlier, Table 6 provides sample statistics, that is, calculations made from the sample of 51,927 people. What we’d like, though, is insight into the population population parameters. You answer the question, “What proportion of people in your sample reported being atheists?” with a statistic; while the question “What proportion of people on earth would report being atheists” is answered with an estimate of the parameter.
The inferential tools for estimating population proportion are analogous to those used for means in the last lab: the confidence interval and the hypothesis test.
Exercise: Write out the conditions for inference to construct a 95% confidence interval for the proportion of atheists in the United States in 2012. Are you confident all conditions are met? ANSWER: Independency: Sample size < 10% americans, random sample. Sample size / skew: success-failure condition (obs >10). I think all conditions are met.
If the conditions for inference are reasonable, we can either calculate the standard error and construct the interval by hand, or allow the inference
function to do it for us.
inference(y = response, data = us12, statistic = "proportion", type = "ci", method = "theoretical", success = "atheist")
## Single categorical variable, success: atheist
## n = 1002, p-hat = 0.0499
## 95% CI: (0.0364 , 0.0634)
Note that since the goal is to construct an interval estimate for a proportion, it’s necessary to specify what constitutes a `success'', which here is a response of
atheist`.
Although formal confidence intervals and hypothesis tests don’t show up in the report, suggestions of inference appear at the bottom of page 7: “In general, the error margin for surveys of this kind is \(\pm\) 3-5% at 95% confidence.”
Exercise: Imagine that, after reading a front page story about the latest public opinion poll, a family member asks you, “What is a margin of error?” In one sentence, and ignoring the mechanics behind the calculation, how would you respond in a way that conveys the general concept? ANSWER: Is the maximum distance that can exist between the population estimate point and the true value.
# type your code for Question 8 here, and Knit
me <- (0.0634 - 0.0364)/2
cat(sprintf('Margin of error = %6.4f.\n',me))
## Margin of error = 0.0135.
Exercise: Using the inference function, calculate confidence intervals for the proportion of atheists in 2012 in two other countries of your choice, and report the associated margins of error. Be sure to note whether the conditions for inference are met. It may be helpful to create new data sets for each of the two countries first, and then use these data sets in the inference
function to construct the confidence intervals.
# type your code for the Exercise here, and Knit
colo <- filter(atheism, nationality == "Colombia" , atheism$year == "2012")
col_ath <- filter(colo, response == "atheist")
ecua <- filter(atheism, nationality == "Ecuador" , atheism$year == "2012")
ecu_ath <- filter(ecua, response == "atheist")
cat(sprintf('Atheism percentage in Colombia: %5.2f\n',nrow(col_ath)*100/nrow(colo)))
## Atheism percentage in Colombia: 2.97
cat(sprintf('Atheism percentage in Ecuador: %5.2f\n',nrow(ecu_ath)*100/nrow(ecua)))
## Atheism percentage in Ecuador: 1.98
inference(y = response, data = colo, statistic = "proportion", type = "ci", method ="theoretical", success = "atheist")
## Single categorical variable, success: atheist
## n = 606, p-hat = 0.0297
## 95% CI: (0.0162 , 0.0432)
mec <- (-0.0162+0.0432)/2
cat(sprintf('Margin of error, atheism in Colombia: %6.4f\n',mec))
## Margin of error, atheism in Colombia: 0.0135
inference(y = response, data = ecua, statistic = "proportion", type = "ci", method ="theoretical", success = "atheist")
## Single categorical variable, success: atheist
## n = 404, p-hat = 0.0198
## 95% CI: (0.0062 , 0.0334)
mee <- (-0.0062+0.0334)/2
cat(sprintf('Margin of error, atheism in Ecuador: %6.4f\n',mee))
## Margin of error, atheism in Ecuador: 0.0136
Imagine you’ve set out to survey 1000 people on two questions: are you female? and are you left-handed? Since both of these sample proportions were calculated from the same sample size, they should have the same margin of error, right? Wrong! While the margin of error does change with sample size, it is also affected by the proportion.
Think back to the formula for the standard error: \(SE = \sqrt{p(1-p)/n}\). This is then used in the formula for the margin of error for a 95% confidence interval: \(ME = 1.96\times SE = 1.96\times\sqrt{p(1-p)/n}\). Since the population proportion \(p\) is in this \(ME\) formula, it should make sense that the margin of error is in some way dependent on the population proportion. We can visualize this relationship by creating a plot of \(ME\) vs. \(p\).
The first step is to make a vector p
that is a sequence from \(0\) to \(1\) with each number separated by \(0.01\). We can then create a vector of the margin of error (me
) associated with each of these values of p
using the familiar approximate formula (\(ME = 1.96 \times SE\)). Lastly, we plot the two vectors against each other to reveal their relationship.
d <- data.frame(p <- seq(0, 1, 0.01))
n <- 1000
d <- d %>%
mutate(me = 1.96*sqrt(p*(1 - p)/n))
ggplot(d, aes(x = p, y = me)) +
geom_line()
The question of atheism was asked by WIN-Gallup International in a similar survey that was conducted in 2005. We assume here that sample sizes have remained the same. Table 4 on page 13 of the report summarizes survey results from 2005 and 2012 for 39 countries.
Answer the following two questions using the inference
function. As always, write out the hypotheses for any tests you conduct and outline the status of the conditions for inference.
inference
, and use year
as the grouping variable.
# type your code for Question 10 here, and Knit
spain <- filter(atheism, nationality == "Spain", response == "atheist")
spain5 <- filter(atheism, nationality == "Spain" , year == "2005")
spain_ath5 <- filter(spain, year == "2005")
spain12 <- filter(atheism, nationality == "Spain" , year == "2012")
spain_ath12 <- filter(spain, year == "2012")
cat(sprintf('Atheism percentage in Spain, 2005: %5.2f\n',nrow(spain_ath5)*100/nrow(spain5)))
## Atheism percentage in Spain, 2005: 10.03
cat(sprintf('Atheism percentage in Spain, 2012: %5.2f\n',nrow(spain_ath12)*100/nrow(spain12)))
## Atheism percentage in Spain, 2012: 9.00
inference(x = as.factor(year), y = response, data = spain, statistic = "proportion", type = "ci", method ="theoretical", success = "atheist")
## Response variable: categorical (2 levels, success: atheist)
## Explanatory variable: categorical (2 levels)
## n_2005 = 115, p_hat_2005 = 1
## n_2012 = 103, p_hat_2012 = 1
## 95% CI (2005 - 2012): (0 , 0)
# type your code for Question 11 here, and Knit
usa <- filter(atheism, nationality == "United States", response == "atheist")
usa5 <- filter(atheism, nationality == "United States" , year == "2005")
usa_ath5 <- filter(usa, year == "2005")
usa12 <- filter(atheism, nationality == "United States" , year == "2012")
usa_ath12 <- filter(usa, year == "2012")
cat(sprintf('Atheism percentage in USA, 2005: %5.2f\n',nrow(usa_ath5)*100/nrow(usa5)))
## Atheism percentage in USA, 2005: 1.00
cat(sprintf('Atheism percentage in USA, 2012: %5.2f\n',nrow(usa_ath12)*100/nrow(usa12)))
## Atheism percentage in USA, 2012: 4.99
inference(x = as.factor(year), y = response, data = usa, statistic = "proportion", type = "ci", method ="theoretical", success = "atheist")
## Response variable: categorical (2 levels, success: atheist)
## Explanatory variable: categorical (2 levels)
## n_2005 = 10, p_hat_2005 = 1
## n_2012 = 50, p_hat_2012 = 1
## 95% CI (2005 - 2012): (0 , 0)
# type your code for Question 12 here, and Knit
n <- 39; alpha <- 0.05
cat(sprintf('In %3.2f countries.\n',n*alpha))
## In 1.95 countries.
# type your code for Question 13 here, and Knit
# Use p = 0.5
me <- 0.01;
n <- round(1.96^2*.5*(1-.5)/me^2+.5,0)
cat(sprintf('At least %d people.\n',n))
## At least 9604 people.
This is a product of OpenIntro that is released under a Creative Commons Attribution-ShareAlike 3.0 Unported. This lab was written for OpenIntro by Andrew Bray and Mine Çetinkaya-Rundel.