ggplot2
                                
                                 ggplot2 copied to clipboard
                                
                                    ggplot2 copied to clipboard
                            
                            
                            
                        An implementation of the Grammar of Graphics in R
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...
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 =...
--- 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...
`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...
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...
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...
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") #>...