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

To pass in both limits and major breaks. This will make it much easier to create useful families of minor break functions in scales. Fixes #3583 @thomasp85 — if you...

This is an issue that is mostly about code sanitising. The code base is littered with checks for e.g. various types of scalars etc for which rlang now provides good...

internals :mag_right:

If a guide has a label, you can make it flush with the edge of a plot: ```r ggplot(PlantGrowth) + aes(x=group, y=weight, fill=group) + geom_boxplot() + theme( legend.position="top", legend.justification =...

guides :straight_ruler:
visual change 👩‍🎨

--- Hi folks. It seems various people have been confounded by trying to reverse the order of date scales in ggplot2. The scale_x_date family of functions is great, but their...

feature
scales :snake:

`autoplot` looks like great fun to play around with, but I see two major issues: 1. Little help for it seems to be easily available online 2. The documentation contains...

documentation
help wanted :heart:

Hello everyone, I hope this finds you well. I noticed that the authors mentioned in the `stat_ellipse()` function are the authors of the `car` package and not specifically not those...

documentation
good first issue :heart:

The documentation and - in the greatest part - error message for `geom_density` is confusing and should be corrected. Documentation states that the ``` geom_density() understands the following aesthetics (required...

feature
layers :chart_with_upwards_trend:

Please support the `lineend` argument for `geom_smooth()`, as it just draws a line. ```r library(ggplot2) ggplot(mtcars, aes(x = mpg, y = vs)) + geom_smooth(size = 4, lineend = "round") #>...

feature
layers :chart_with_upwards_trend:
help wanted :heart: