CommencerCommencez gratuitement

Chi-square tests

In addition to Pearson's correlations and t-tests, chi-square tests and contingency tables are useful tools to assess associations between two categorical variables. In this exercise you will create basic and customized contingency tables and perform Chi-square tests.

As explained in the preceding video, when using the dplyr pipe %>% operator, you will need to nest the table() and gmodels::CrossTable() functions inside the with() function.

The abaloneKeep dataset, dplyr and gmodels packages have been loaded for you.

Cet exercice fait partie du cours

<cours>R For SAS Users</cours>
Voir le cours

Exercice interactif pratique

Essayez cet exercice en complétant ce code d’exemple.

# Create frequency table of sex by agecat
___ <- ___ %>% 
  with(___)
Modifier et exécuter le code