ComeçarComece de graça

Flipping things around

When the labels for our x-axis run into each other, we have two main choices: change the labels to be vertical instead of horizontal or flip the axes. The latter is how the FiveThirtyEight graph did it and makes it easier to read the labels. The plot you created in the previous exercise, titled_plot, has been loaded for you.

Este exercício faz parte do curso

Categorical Data in the Tidyverse

Ver curso

Instruções do exercício

  • Flip the x- and y-axis.
  • Remove the x-axis ticks.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

flipped_plot <- titled_plot + 
    # Flip the axes
    ___ + 
    # Remove the x-axis ticks and labels
    ___(___ = element_blank(), 
        ___ = element_blank())
Editar e executar o código