0

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.

Akiro
  • 1
  • 1
  • 1
    Welcome to Stack Overflow! Could you make your problem reproducible by sharing a sample of your data so others can help (please do not use `str()`, `head()` or screenshot)? You can use the [`reprex`](https://reprex.tidyverse.org/articles/articles/magic-reprex.html) and [`datapasta`](https://cran.r-project.org/web/packages/datapasta/vignettes/how-to-datapasta.html) packages to assist you with that. See also [Help me Help you](https://speakerdeck.com/jennybc/reprex-help-me-help-you?slide=5) & [How to make a great R reproducible example?](https://stackoverflow.com/q/5963269) – Tung Oct 31 '21 at 05:48

0 Answers0