Calculating statistic of interest
Using the NHANES
dataset, let's investigate the relationship between gender and home ownership. Remember, more information about the dataset can be found here: NHANES.
As seen in the video, natural variability can be modeled from shuffling observations around to remove any relationships that might exist in the population. However, before you permute the data, you need to calculate the original observed statistic. In this exercise, you will calculate the difference in proportion of home owners who are men versus women.
Recall that:
%in%
returns a logical vector that isTRUE
when values on the left hand side are listed on the right hand side.- The mean of a logical vector is the proportion of cases where that vector is
TRUE
.
fruits <- c("apple", "banana", "cherry")
fruits %in% c("banana", "cherry")
mean(fruits %in% c("banana", "cherry"))
This exercise is part of the course
Foundations of Inference in R
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
homes <- NHANES %>%
# Select Gender and HomeOwn
___(___, ___) %>%
# Filter for HomeOwn equal to "Own" or "Rent"
___(___ %in% c("___", "___"))