Exercise

Bar plots: dynamite plots

In the video we saw many reasons why "dynamite plots" (bar plots with error bars) are not well suited for their intended purpose of depicting distributions. If you really want error bars on bar plots, you can of course get them, but you'll need to set the positions manually. A point geom will typically serve you much better.

Nonetheless, you should know how to handle these kinds of plots, so let's give it a try.

Instructions

100 XP
  • Using mtcars,, plot wt versus fcyl.
  • Add a bar summary stat, aggregating the wts by their mean, filling the bars in a skyblue color.
  • Add an errorbar summary stat, aggregating the wts by mean_sdl.