rosling_responses | R Documentation |
Public health has improved and evolved, but has the public's knowledge changed with it? This dataset explores sample responses for two survey questions posed by Hans Rosling during lectures to a wide array of well-educated audiences.
rosling_responses
A data frame with 278 rows and 3 variables:
ID for the question being posed.
Noting whether the response was correct
or incorrect
.
The probability the person would have guessed the answer correctly if they were guessing completely randomly.
The samples we describe are plausible based on the exact rates observed in larger samples. For more info on the actual rates observed, visit https://www.gapminder.org.
Another relevant reference is a book by Hans Rosling, Anna Rosling Ronnlund, and Ola Rosling called Factfulness.
frac_correct <- tapply(
rosling_responses$response == "correct",
rosling_responses$question,
mean
)
frac_correct
n <- table(rosling_responses$question)
n
expected <- tapply(
rosling_responses$prob_random_correct,
rosling_responses$question,
mean
)
# Construct confidence intervals.
se <- sqrt(frac_correct * (1 - frac_correct) / n)
# Lower bounds.
frac_correct - 1.96 * se
# Upper bounds.
frac_correct + 1.96 * se
# Construct Z-scores and p-values.
z <- (frac_correct - expected) / se
pt(z, df = n - 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.