Matt Cowgill

Results 28 issues of Matt Cowgill

The vignette that shows `{stringr}` functions aligned with their base R equivalents is extremely useful. I check it often. It appears to have been removed. Please consider reinstating it! https://stringr.tidyverse.org/articles/from-base.html

Hello, Thank you for a very useful package. It would be handy to be able to map `label.colour` to the data as an aesthetic. As an example: ``` r library(ggplot2)...

The primary use case of ggannotate is to generate the code to produce the annotation(s) for a plot. A secondary use case could be to export the annotated plot directly...

In response to: https://twitter.com/SteveDX_/status/1229457531468156931 This should be possible using `shiny::nearPoints()`

At the moment the Shiny gadget can only add one annotation at a time. The user can copy their code out and then repeat the process to do multiple annotations....

Options: 1) Round to a pre-defined number of digits (3?); 2) Infer the appropriate number of digits to round to, based on the limits of the relevant axis. I favour...

as in ``` mtcars %>% mutate(cyl2 = cyl) %>% ggplot(aes(x = wt, y = mpg)) + geom_point() + coord_flip() + facet_wrap(~cyl2) ```

This adds a `release_date` argument to `read_abs()`. At the moment, `read_abs()` fetches the latest release of the requested table(s). It cannot be used to fetch previous releases. The `release_date` argument...

if local file exists AND is up to date, load local file if not, get file from ABS This could be used to form a new argument to `read_abs()`, something...

enhancement