Jack Davison

Results 75 comments of Jack Davison

Closing stale issue (4 years). If your problem is persisting, please feel free to reply in this issue with one or more of the files you're trying to read in....

Hi both, This can be achieved as follows: ``` r openair::trajLevel(openairmaps::traj_data, statistic = "cwt") ``` ![](https://i.imgur.com/0TRbwbN.png) ``` r openair::trajLevel(openairmaps::traj_data, statistic = "cwt", limits = c(0, 1)) ``` ![](https://i.imgur.com/MbJWCUL.png) Created on...

> Hi @BhavShah01 , you can achieve something similar (not radial) with **ggplot2** and **dplyr**: > > ```r > library(ggplot2) > library(dplyr) > library(lubridate) > > ggplot(mydata %>% > mutate(Year...

Another answer which may be useful is found here: https://github.com/davidcarslaw/openair/issues/100

Good morning! I'm afraid I'm not sure what you're asking - are you able to provide a reproducible example of `timePlot()` not doing what you'd expect? Looking at the example...

I can't seem to recreate your issue on my end, everything seems to install successfully. Perhaps there was a temporary issue with NOAA, is it still failing now? ``` r...

Ah - if your WiFi is poor, or if the NOAA servers are being slow, it is likely that R's in-built "timeout" time is being reached. You can increase it...

Hi, We'd be able to best help you if you can provide a [reproducible example](https://bookdown.org/david_carslaw/openair/sections/appendices/appendix-gethelp.html). `TheilSen()` should only plot the data you use as an input, e.g.,: ``` r library(openair)...

Hi @mjb302, @davidcarslaw may have an answer from within `{openair}` itself, but if you're comfortable with `{ggplot2}` you could give this a go w/ the in-development [`{ggopenair}`](https://github.com/jack-davison/ggopenair/tree/main). Under that framework...

Hi Nabla, `{openair}` is a very old package that's still going strong, and therefore predates `{ggplot2}` and does not work with `{ggsave}`. You'll need to go old school! See instructions...