Luke Smith
Luke Smith
Used {rhub} to identify CRAN issues. Resolves #11.
I never intended this to be on CRAN but parts of the code base live in the remedy package. Extra features have been added to AlignAssign since remedy made its...
Exporting makes the Geom accessible to other packages. For example, it could be used to fit labels within [parallel sets](https://github.com/thomasp85/ggforce/issues/83) and parallel labels in the [ggforce](https://github.com/thomasp85/ggforce/) package.
Swapping the axis and strip text does not seem possible. Could a `position.y.axis` argument be added to achieve this? ```r library(ggplot2) library(ggforce) ggplot(iris, aes(.panel_x, .panel_y)) + geom_point() + geom_autodensity() +...
Gives `stat_bkde2d()` the same behavior as `stat_density2d()` -- normalizing the density to the max density per group when facetting. Similar to the `nlevel` computed stat. ### Before (density) ```r library(ggplot2)...
Base R colors can be used to form palettes (i.e. `c(orange, orange1, orange2, orange3, orange4)`). Tian Zheng created a layout of all [base R colors in alphabetic order](http://www.stat.columbia.edu/%7Etzheng/files/Rcolor.pdf).
Including the fonts in `inst/` would make these fonts accessible to R code via `system.file()` -- allowing them to be be registered and loaded via `extrafont` within the `vapoRwave` package....
Packages such as [prismatic](https://github.com/EmilHvitfeldt/prismatic) manipulate color properties such as lightness, saturation, and negation. Adding these effects to `gradient_n_pal()` would allow _convenient_ manipulation of color palettes in [ggplot2](https://github.com/tidyverse/ggplot2) (i.e. `scale_color_viridis_c()`) and...