LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Analyzing Survey Data in R

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Add proportions to table
tab_w <- tab_w %>%
  as.data.frame() %>%
  ___(Prop = Freq/___)
Code bearbeiten und ausführen