In this lab, we will explore and visualize the data using the tidyverse suite of packages, and perform statistical inference using infer. The data can be found in the companion package for OpenIntro resources, openintro.
Let’s load the packages.
You will be analyzing the same dataset as in the previous lab, where
you delved into a sample from the Youth Risk Behavior Surveillance
System (YRBSS) survey, which uses data from high schoolers to help
discover health patterns. The dataset is called yrbss
.
# Load the yrbss dataset
data("yrbss")
# Count the occurrences for the amount of days texted while driving
texted_while_driving_counts <- yrbss %>%
group_by(text_while_driving_30d) %>%
summarise(count = n())
# Display the results
texted_while_driving_counts
## # A tibble: 9 × 2
## text_while_driving_30d count
## <chr> <int>
## 1 0 4792
## 2 1-2 925
## 3 10-19 373
## 4 20-29 298
## 5 3-5 493
## 6 30 827
## 7 6-9 311
## 8 did not drive 4646
## 9 <NA> 918
# Calculate the proportion of people who have texted every day and never wear helmets
proportion_texted_never_helmet <- yrbss %>%
filter(text_while_driving_30d == "Every day", helmet_12m == "Never") %>%
summarise(count = n()) %>%
pull(count) / nrow(yrbss)
# Display the proportion
proportion_texted_never_helmet
## [1] 0
Remember that you can use filter
to limit the dataset to
just non-helmet wearers. Here, we will name the dataset
no_helmet
.
Also, it may be easier to calculate the proportion if you create a
new variable that specifies whether the individual has texted every day
while driving over the past 30 days or not. We will call this variable
text_ind
.
When summarizing the YRBSS, the Centers for Disease Control and Prevention seeks insight into the population parameters. To do this, you can answer the question, “What proportion of people in your sample reported that they have texted while driving each day for the past 30 days?” with a statistic; while the question “What proportion of people on earth have texted while driving each day for the past 30 days?” 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 chapter: the confidence interval and the hypothesis test.
no_helmet %>%
drop_na(text_ind) %>% # Drop missing values
specify(response = text_ind, success = "yes") %>%
generate(reps = 1000, type = "bootstrap") %>%
calculate(stat = "prop") %>%
get_ci(level = 0.95)
## # A tibble: 1 × 2
## lower_ci upper_ci
## <dbl> <dbl>
## 1 0.0654 0.0775
Note that since the goal is to construct an interval estimate for a
proportion, it’s necessary to both include the success
argument within specify
, which accounts for the proportion
of non-helmet wearers than have consistently texted while driving the
past 30 days, in this example, and that stat
within
calculate
is here “prop”, signaling that you are trying to
do some sort of inference on a proportion.
Margin of Error is 0.00625
infer
package, calculate confidence intervals
for two other categorical variables (you’ll need to decide which level
to call “success”, and report the associated margins of error. Interpet
the interval in context of the data. It may be helpful to create new
data sets for each of the two countries first, and then use these data
sets to construct the confidence intervals.# Create a dataset for helmet use
helmet_data <- yrbss %>%
filter(!is.na(helmet_12m)) # Remove NA values
# Create a dataset for texting while driving
texting_data <- yrbss %>%
filter(!is.na(text_while_driving_30d)) # Remove NA values
# Create a dataset for helmet use, filtering to two levels: "never" and "always"
helmet_data_filtered <- helmet_data %>%
filter(helmet_12m %in% c("never", "always"))
# Calculate the confidence interval for helmet use
helmet_ci <- helmet_data_filtered %>%
specify(response = helmet_12m, success = "never") %>%
generate(reps = 1000, type = "bootstrap") %>%
calculate(stat = "prop") %>%
get_ci(level = 0.95)
# Display the helmet confidence interval
helmet_ci
## # A tibble: 1 × 2
## lower_ci upper_ci
## <dbl> <dbl>
## 1 0.941 0.951
# Create a dataset for texting while driving, filtering to two levels: "30" and "0"
texting_data_filtered <- texting_data %>%
filter(text_while_driving_30d %in% c("30", "0"))
# Calculate the confidence interval for texting while driving
texting_ci <- texting_data_filtered %>%
specify(response = text_while_driving_30d, success = "30") %>%
generate(reps = 1000, type = "bootstrap") %>%
calculate(stat = "prop") %>%
get_ci(level = 0.95)
# Display the texting confidence interval
texting_ci
## # A tibble: 1 × 2
## lower_ci upper_ci
## <dbl> <dbl>
## 1 0.138 0.156
# Calculate the margin of error for helmet use
helmet_margin_of_error <- (helmet_ci$upper_ci - helmet_ci$lower_ci) / 2
print(helmet_margin_of_error)
## [1] 0.005084056
# Calculate the margin of error for texting while driving
texting_margin_of_error <- (texting_ci$upper_ci - texting_ci$lower_ci) / 2
print(texting_margin_of_error)
## [1] 0.008991813
Imagine you’ve set out to survey 1000 people on two questions: are you at least 6-feet tall? 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\).
Since sample size is irrelevant to this discussion, let’s just set it to some value (\(n = 1000\)) and use this value in the following calculations:
The first step is to make a variable p
that is a
sequence from 0 to 1 with each number incremented by 0.01. You can then
create a variable of the margin of error (me
) associated
with each of these values of p
using the familiar
approximate formula (\(ME = 2 \times
SE\)).
Lastly, you can plot the two variables against each other to reveal
their relationship. To do so, we need to first put these variables in a
data frame that you can call in the ggplot
function.
dd <- data.frame(p = p, me = me)
ggplot(data = dd, aes(x = p, y = me)) +
geom_line() +
labs(x = "Population Proportion", y = "Margin of Error")
p
and
me
. Include the margin of error vs. population proportion
plot you constructed in your answer. For a given sample size, for which
value of p
is margin of error maximized?Margin of error depends on population of propotion (p) The maximum margin of error for a given sample size occurs when the population proportion p is 0.5, demonstrating the greatest uncertainty in estimation. p moves away from 0.5 towards either extreme (0 or 1), the margin of error decreases.
We have emphasized that you must always check conditions before making inference. For inference on proportions, the sample proportion can be assumed to be nearly normal if it is based upon a random sample of independent observations and if both \(np \geq 10\) and \(n(1 - p) \geq 10\). This rule of thumb is easy enough to follow, but it makes you wonder: what’s so special about the number 10?
The short answer is: nothing. You could argue that you would be fine with 9 or that you really should be using 11. What is the “best” value for such a rule of thumb is, at least to some degree, arbitrary. However, when \(np\) and \(n(1-p)\) reaches 10 the sampling distribution is sufficiently normal to use confidence intervals and hypothesis tests that are based on that approximation.
You can investigate the interplay between \(n\) and \(p\) and the shape of the sampling distribution by using simulations. Play around with the following app to investigate how the shape, center, and spread of the distribution of \(\hat{p}\) changes as \(n\) and \(p\) changes.
Center: The distribution is centered around p= 0.1 which matches the true population proportion. Spread: The standard error is approximately 0.0173, indicating the average spread of sample proportions around the true proportion. Shape: The shape is roughly normal, as expected for large sample sizes, with a slight skew due to the low value of p=0.1.
p is directly propotional to center , As p changes center changes . If p is 0.1 center is 0.1 Spread is Widest at p=0.5, narrows as p approaches 0 or 1. Symmetric around p=0.5, becomes skewed as p moves closer to 0 or 1.
For some of the exercises below, you will conduct inference comparing
two proportions. In such cases, you have a response variable that is
categorical, and an explanatory variable that is also categorical, and
you are comparing the proportions of success of the response variable
across the levels of the explanatory variable. This means that when
using infer
, you need to include both variables within
specify
.
sleep <- yrbss %>%
filter(school_night_hours_sleep == "10+")
strengthTraining <- yrbss %>%
mutate(text_ind = ifelse(strength_training_7d == "7", "yes", "no"))
strengthTraining %>%
filter(text_ind != "") %>%
specify(response = text_ind, success = "yes") %>%
generate(reps = 1000, type = "bootstrap") %>%
calculate(stat = "prop") %>%
get_ci(level = 0.95)
## # A tibble: 1 × 2
## lower_ci upper_ci
## <dbl> <dbl>
## 1 0.162 0.175
Type I Error: Rejecting the null hypothesis when it is true. Probability of Type I Error: Equal to the significance level, which in this case is 0.05 or 5%.
This means there is a 5% chance that we could detect a change due to random sampling variability when there is no real difference.
Margin of error is 1.96SE = 1.96 (p(1-p)/n)^0.5
so if we are aiming for a me of <1% with a ci of 95% n = 1.96^2 * 0.5*(1 − 0.5)/me^2 or n = 9,604