Teun van den Brand

Results 906 comments of Teun van den Brand

Yeah it looks like it should if no interior axes are drawn or the interior axes are drawn with labels. The issue is that the space reserved for axes is...

Now with much better spacing for hidden labels: ``` r devtools::load_all("~/packages/ggplot2/") #> ℹ Loading ggplot2 ggplot(mtcars, aes(mpg, disp)) + geom_point() + guides(x.sec = "axis", y.sec = "axis") + facet_wrap(vars(cyl, vs),...

A small update on how this PR now interacts with newer features. When using stacked axes, only the first axis in the stack is rendered at interior panels without labels...

Thanks for the review Thomas!

In such case, should we add a tolerance or treat them as unequal? If treated as unequal, we could replace the `tapply()` by `rowsum()`.

> Breaks would still need to be censored before they are drawn, but this could be moved to guide_train(). I explored this for a bit, but there are plenty of...

Closing this PR in favour of #5569.

If you have a plot `p` you can just save both to see if your custom font has worked: ```r p

Custom transformations is still the recommended route. No consensus yet about the optimal implementation of scale reversal. My proposal is opening up the `rescaler` argument as described [here](https://github.com/tidyverse/ggplot2/issues/4021#issuecomment-911895926). I'll poke...