Trevor L. Davis
Trevor L. Davis
Did you read and follow: https://svglite.r-lib.org/articles/fonts.html ?
* Do you know of any examples of a custom geom creating a legend for an aesthetic not in base `{ggplot2}`? * Probably not impossible to do but I'm not...
* You can use [`guide_custom()`](https://ggplot2.tidyverse.org/reference/guide_custom.html) to add arbitrary new `z` legend elements but you'd need to manually construct your own "grob" for the legend * Currently this package does not...
What about creating stacks of cubes? Something like: ```r legend_grob
I copied over `R/s3_register.r` in the development version of `{vctrs}` to a new package and I also observe when trying to use it: ```r Error in `load_all()`: ! Failed to...
A possible test case for `tests/testthat/test-ansi-html.R`: ```r # https://github.com/r-lib/cli/issues/752 expect_equal( ansi_html("\033[91mR\033[39m\033[91mR\033[39m"), "RR" ) ``` where ```r > paste0(col_br_red("R"), col_br_red("R")) [1] "\033[91mR\033[39m\033[91mR\033[39m" ```
> it's just rendering it in the Rstudio server viewport * What graphics device exactly are you using? Perhaps try `print(dev.cur())` and `dev.capabilities()`? * Have you tried changing the graphics...
* `{xmpdf}` has some basic support for getting, combining, and setting pdf bookmarks. * You'll need to set the bookmarks after combining the pdf files. * You'll need the command-line...
> Add "Idle" as possible "event" in dev.capabilities("events") This improvement was incorporated into R 4.4.3.
* Perhaps add a "Related Software" section of the README with links to the various command-line parsing packages with brief comments. I don't really know all the tradeoffs of some...