ggplot2 icon indicating copy to clipboard operation
ggplot2 copied to clipboard

An implementation of the Grammar of Graphics in R

Results 510 ggplot2 issues
Sort by recently updated
recently updated
newest added

I've been wondering why ggplot2 doesn't have getting started vignette. AFAIK, there had been no discussion about this. I know it's probably going to be a huge work to summarise...

documentation
help wanted :heart:

# Problem The documentation for `geom_label()` and `geom_text()` (and many other geoms) is unclear about the `position` argument. It says, “Position adjustment, either as a string, or the result of...

documentation
scales :snake:
help wanted :heart:

`vars()` have been deprecated in the rest of tidyverse and is now in an odd position in ggplot2. Due to the non-standard semantics of facet specifications there are no real...

documentation
internals :mag_right:

(Originally commented at https://github.com/tidyverse/ggplot2/pull/3802#issuecomment-583852613) In my understanding, there are 2 purposes of `fortify()`. 1. User-facing utility to convert an object to data.frame, which otherwise the users don't know how to....

layers :chart_with_upwards_trend:
breaking change :skull_and_crossbones:

I think it might be useful to have the possibility of passing a function to scale names like so: ``` r library(ggplot2) df

feature
scales :snake:

This is from https://github.com/r-lib/pillar/pull/404 that implements `scale_type.pillar_num()` (returning `"num"`) and `scale_x_num()` and `scale_y_num()` . The scales become available only after the pillar package is attached, see below. This seems to...

feature
scales :snake:

`datetime_scale()` is not currently exported, but may be required when writing extensions to ggplot. E.g. Writing new sclaes for custom geoms etc. All other scales are exported. i.e. `continuous_scale()`, `discrete_scale()`...

feature
scales :snake:

(cc @clauswilke https://github.com/tidyverse/ggplot2/pull/3818#issuecomment-623055651) ## Context Let's say `foo` is a class defined by a package other than ggplot2 (Ex: `patchwork` or `GGally`). `foo` objects also inherit from `gg`. `bar` objects...

feature
internals :mag_right:

Since there are now divergent continuous color palettes available in different packages, it would be nice to be able to specify a midpoint without manually having to calculate the limits....

feature
scales :snake:

Hi! I ran across the error in the title when mapping `alpha` to an aesthetic in `geom_ribbon`. ggplot2 is a mature package, so I suspect there are well-founded reasons this...

feature