What's in a number?
Turn your attention to the variable called number
. Read more about it by pulling up the help file with ?email
.
To explore the association between this variable and spam
, select and construct an informative plot. For illustrating relationships between categorical variables, you've seen
- Faceted bar charts
- Side-by-side bar charts
- Stacked and normalized bar charts.
Let's practice constructing a faceted bar chart.
Este ejercicio forma parte del curso
Análisis exploratorio de datos en R
Instrucciones del ejercicio
- Reorder the levels of
number
so that they preserve the natural ordering of"none"
, then"small"
, then"big"
, saving to anumber_reordered
column. - Construct a faceted bar chart of the association between
number
andspam
.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Reorder levels
email$number_reordered <- ___
# Construct plot of number_reordered
___(email, ___
___
___