ggplot2
ggplot2 copied to clipboard
An implementation of the Grammar of Graphics in R
This is an issue so that we remember to come back to this. As noted by. @clauswilke here: https://github.com/tidyverse/ggplot2/issues/3561#issuecomment-599091916 , constructing ternary diagrams using ggplot requires a lot of copying...
Currently the way we determine the parameters of a geom/stat is ugly. For example, the parameters of a geom are mostly imputed from `draw_panel` and `draw_group`, but some need to...
geom_violin uses density estimate to plot quantiles, which doesn't align with box plot. This has already been asked and is document: [https://stackoverflow.com/questions/36033341/differing-quantiles-boxplot-vs-violinplot](url) issue: #2088 I think it would be useful...
GeomCol is a direct duplicate of GeomBar. We should remove it and simply make `geom_col()` a GeomBar+StatIdentity call
I expect that the font-family specified in the theme is applied to all applicable graphical content. However, when specifying some unicode characters for the shape scale I get empty boxes...
Please look at the reprex at the end of the post. I plot a world map, but when I change the coordinates, the grid is at least partially lost (the...
This now has come up in #3798 and #5961 and the gist of it is that we have a procedure for managing lifecycles of functions, but we don't have an...
This PR aims to fix https://github.com/tidyverse/ggplot2/pull/3506#issuecomment-525733450. Briefly, `geom_errorbarh()` is now `geom_errorbar(orientation = "y")` + deprecation warning. The `` ggproto class is kept as people have extended it (see e.g. [here](https://github.com/cran/ggiraph/blob/master/R/geom_errorbarh_interactive.R#L25)),...
The following is a piece of documentation of the `stat_bin(binwidth)` argument: > Can be specified as a numeric value or as a function that calculates width from unscaled x. Here,...
See https://github.com/tidyverse/ggplot2/issues/5913. It should be reopened.