Is it possible to make a feather plot in R? Doing some google searches only turned up one R package (feather.plot
) capable of making feather plots, however it is an old package that is not available for R version 3.6.1. Below is an example of a timeseries of wind speed and direction that I would like to make a feather plot with. The x-axis would be hour
, the length of each feather should be speed
, and the angle of each feather should be direction
.
set.seed(123)
wind.df <- data.frame(hour = 1:10,
speed = runif(n=10, min = 1, max = 10),
direction <- runif(n=10, min = 0, max = 360))