ggplot2
ggplot2 copied to clipboard
An implementation of the Grammar of Graphics in R
`scale_y_discrete()` and `scale_x_discrete()` currently appear not to support the `sec.axis` argument of their `scale_continuous()` brethren. `sec.axis` would be nice for discrete scales as well, such as when you have various...
This PR adds a `just` argument to `geom_col()` and `geom_bar()` (#4899) allowing a user to more easily change the alignment of columns. In particular, it makes it easy to align...
Fix https://github.com/tidyverse/ggplot2/issues/4394 ggplot2 drops an aesthetic when the values are not constant within the group. Currently, this happens per group. Even when the dropping happens, if any of the groups...
While I was trying to making a variant of `guide_axis()` that displays tick marks at minor breaks (see for example [SO](https://stackoverflow.com/questions/61087231/ggplot2-add-minor-tick-marks-outside-plotting-area-without-turning-clip-off/)), I stumbled on a possible bug in `coord_trans()` and...
Hi team @clauswilke @yutannihilation @paleolimbot @karawoo @hadley I'm beginning to get the next release in shape. Once again this release will not be feature heavy. It will however focus on...
---- Feature Request: Natively Cap the Axis Lines ---- It would be amazing to have the option to cap the axis lines, such as featured on the `lemon` package. The...
Currently the alignment of columns is always centre, which may not always be desired. E.g. in the following case, values of `date` always give the first of the month, but...
Dear package maintainer, I am trying to generate a histogram plot containing two groups with a log10 transformed y-axis. I would expect that missing values would just be ignored for...
Now that the plot titles and captions can be aligned with respect to the full plot area, it would be great if the same was true for the legend. At...