Flipping axes II
In this exercise, we'll continue to use the coord_flip()
layer function to reverse the variables mapped onto the x
and y
aesthetics.
Within the mtcars
dataset, car
is the name of the car and wt
is its weight.
Diese Übung ist Teil des Kurses
Intermediate Data Visualization with ggplot2
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Plot of wt vs. car
___ +
# Add a point layer
___ +
labs(x = "car", y = "weight")