1. Learn
  2. /
  3. Courses
  4. /
  5. Categorical Data in the Tidyverse

Exercise

Reordering a variable by its frequency

Making effective visualizations is a big part of analyzing data. It's not about having all the information on the plot; how you display the information can change whether or how quickly someone can understand the message. One of the primary purposes of the forcats package is to make it easy to quickly change your visualizations when you're working with qualitative variables.

Let's make a chart of how many people are employed in each industry. We'll do two versions so you can judge which one is better. multiple_choice_responses has been loaded for you.

Instructions 1/3

undefined XP
  • 1
    • Make a bar plot of EmployerIndustry.
    • Flip the coordinates using coord_flip() to make it more readable.
  • 2

    Now make the bar plot ordered.

  • 3

    Reverse the order of the bar plot, so from top to bottom it goes highest count to lowest.