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.
Cet exercice fait partie du cours
Intermediate Data Visualization with ggplot2
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Using wind, plot wd filled by ws
ggplot(___, aes(___)) +
# Add a bar layer with width 1
___