Clarify which delay

This commit is contained in:
mine-cetinkaya-rundel 2023-02-21 08:50:32 -05:00
parent a9afa9bb19
commit bd3bb42f24
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ For larger plots, you might want to try the heatmaply package, which creates int
2. How does the segmented bar chart change if color is mapped to the `x` aesthetic and `cut` is mapped to the `fill` aesthetic? 2. How does the segmented bar chart change if color is mapped to the `x` aesthetic and `cut` is mapped to the `fill` aesthetic?
Calculate the counts that fall into each of the segments. Calculate the counts that fall into each of the segments.
3. Use `geom_tile()` together with dplyr to explore how average flight delays vary by destination and month of year. 3. Use `geom_tile()` together with dplyr to explore how average flight departure delays vary by destination and month of year.
What makes the plot difficult to read? What makes the plot difficult to read?
How could you improve it? How could you improve it?