LoslegenKostenlos loslegen

Grouping variables

We'll continue with the previous exercise by considering the situation of looking at sub-groups in our dataset. For this we'll encounter the invisible group aesthetic.

mtcars has been given an extra column, fcyl, that is the cyl column converted to a proper factor variable.

Diese Übung ist Teil des Kurses

Intermediate Data Visualization with ggplot2

Kurs anzeigen

Interaktive Übung

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

# Using mtcars, plot mpg vs. wt, colored by fcyl
___ +
  # Add a point layer
  ___ +
  # Add a smooth lin reg stat, no ribbon
  ___
Code bearbeiten und ausführen