Wind rose plots
Polar coordinate plots are well-suited to scales like compass direction or time of day. A popular example is the "wind rose".
The wind
dataset is taken from the openair
package and contains hourly measurements for windspeed (ws
) and direction (wd
) from London in 2003. Both variables are factors.
This exercise is part of the course
Intermediate Data Visualization with ggplot2
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Using wind, plot wd filled by ws
ggplot(___, aes(___)) +
# Add a bar layer with width 1
___