Teun van den Brand

Results 179 issues of Teun van den Brand

This PR aims to fix #5800. Briefly, it does exactly what the title says and the method just returns input. Due to this, we were allowed a small simplification to...

This PR aims to fix #5568. Briefly, this PR adds new prefixed versions of getters/setters/updaters/replacer functions. What function names have changed is included in the news bullet. The suffixed versions...

This PR aims to fix #5788. Briefly, when there is only 1 group with unique x variables, `stat_align()` + `position_stack()` can be slow. By skipping alignment when there is only...

This plot is useless, as all data is obfuscated by the `panel.border` rectangle. ``` r library(ggplot2) ggplot(mpg, aes(displ, hwy)) + geom_point() + theme(panel.border = element_rect()) ``` ![](https://i.imgur.com/GrcLVmR.png) Created on 2024-03-19...

themes :dancer:
visual change 👩‍🎨

This PR aims to fix #5782. Briefly, whenever the panel border is rendered with `element_render()`, a `fill = NA` is passed to set a transparent fill regardless of the element...

This PR aims to fix #5434. Briefly, it adds a `minor_ticks` argument to discrete scales, which I imagine is only useful for position scales. It controls where minor panel grid...

This PR aims to fix #5658. Briefly, an `arrow.fill` parameter was either added or propagated in these functions: * `geom_path()` and thus by extension `geom_line()` * `geom_function()` * `geom_sf()` when...

This PR aims to fix #5740. Briefly, when `width` and `height` are missing, these are inferred from the data. In #5125, resolutions were computed per panel instead of over the...

Per release notes found [here](https://github.com/quarto-dev/quarto-r/releases/tag/v1.4), quarto is now available as vignette builder. Should ggplot2 switch vignettes to quarto? Is pkgdown prepared to deal with .qmd vignettes?

internals :mag_right:

Briefly, when including `NA` in the limits, I interpret that as wanting to display the `na.value` for it. This is fine (aside from https://github.com/tidyverse/ggplot2/issues/5749#issuecomment-1982908002). ``` r library(ggplot2) p However when...

bug
scales :snake: