CommencerCommencer gratuitement

Graphing a categorical variable

It is a bit hard to compare the frequencies in tab_w since each frequency is a very large number. Let's add proportions to the table and produce a bar graph to better understand the distribution of depression.

Cet exercice fait partie du cours

Analyzing Survey Data in R

Afficher le cours

Exercice interactif pratique

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

# Add proportions to table
tab_w <- tab_w %>%
  as.data.frame() %>%
  ___(Prop = Freq/___)
Modifier et exécuter le code