CommencerCommencer gratuitement

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.

Cet exercice fait partie du cours

Exploratory Data Analysis in R

Afficher le cours

Instructions

  • Reorder the levels of number so that they preserve the natural ordering of "none", then "small", then "big", saving to a number_reordered column.
  • Construct a faceted bar chart of the association between number and spam.

Exercice interactif pratique

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

# Reorder levels
email$number_reordered <- ___

# Construct plot of number_reordered
___(email, ___
  ___
  ___
Modifier et exécuter le code