So I have my code here,
windRose(April1, ws = "ws", wd = "wd",
breaks =c(0,1,2,3,4,5,6),
auto.text = FALSE,
paddle = FALSE,
annotate = FALSE,
grid.line = 10,
key = list(labels = c(">0 - 1",
">1 - 2",
">2 - 3",
">3 - 4",
">4 - 5",
">5 - 6")),
key.footer = "Wind Speed in (m/s)",
key.position = "bottom",
par.settings=list(axis.line=list(col="lightgray")),
col = c("#4f4f4f", "#0a7cb9", "#f9be00", "#ff7f2f", "#d7153a"))
It runs however I want to add a title, Say Data for April 1. I tried using ggplot but it does not work, I installed it in my library already. Also, would it be possible to add directions in the windrose? I know in the package it just shows N,W,E,S directions I was wondering if I can add more. Like, NW,NE,SW,SE? I am new to R and to be honest I spend like 3hrs already just trying to figure this out.