CommencerCommencer gratuitement

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 is TRUE 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"))

Cet exercice fait partie du cours

Foundations of Inference in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

homes <- NHANES %>%
  # Select Gender and HomeOwn
  ___(___, ___) %>%
  # Filter for HomeOwn equal to "Own" or "Rent"
  ___(___ %in% c("___", "___"))
Modifier et exécuter le code