ggplot2
ggplot2 copied to clipboard
An implementation of the Grammar of Graphics in R
Currently, you can't always set the legend key height/width as values that will work well as either legend or colourbars - particularly when the legend/colourbar is placed on top. It'd...
Sorry to be pedantic. Feel free to close, if no bandwidth. Maybe a tidydev day thing? Well done on the v4 release! ``` theme( legend.justification = "top", legend.key.justification = "right", ...
Had to fix one test case, ggsave:144.
The example in `?ggproto` gives an example of a *stateful* class (.e.g `Adder$x`) is a stateful field. It advertises a property of ggproto classes that should be used sparingly and...
When you move the strips formed by faceting to the bottom, as in, e.g.: ``` ggplot(iris, aes(x = Sepal.Length, y = Petal.Length)) + facet_wrap(~Species, strip.position = "bottom") ``` You end...
Currently, `position_stack()` bottom-aligns (positive) data at 0. However, it may be nice to also include options to center-align stacks, like stream graphs, or maybe even top-align stacks. The thing that...
Hi, Teun! In the process of using ggplot for plotting fitted lines, I came across a scenario of **_trying to show confidence intervals using line segments rather than shaded space_**....