ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Analyzing Survey Data in R

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Add proportions to table
tab_w <- tab_w %>%
  as.data.frame() %>%
  ___(Prop = Freq/___)
Editar y ejecutar código