You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Applying any transformation using coord_trans() modifies what the argument position does in scale_:
(notice that only the title of the axis is sent to the top and no longer the labels when coord_trans() is used)
library(ggplot2)
packageVersion("ggplot2") ## note: current devel does also behave in the same way#> [1] '3.3.5'
ggplot(data=iris) +
geom_point(aes(y=Sepal.Length, x=Species)) +
scale_x_discrete(position="top")
@paleolimbot all of these issues seems to be related to the fact that only coord_cartesian()was moved over to the new axis guide generation pipeline... are you up for moving the remaining coords?
Applying any transformation using
coord_trans()
modifies what the argumentposition
does inscale_
:(notice that only the title of the axis is sent to the top and no longer the labels when
coord_trans()
is used)Created on 2021-07-08 by the reprex package (v2.0.0)
The same goes for the left/right positions.
The text was updated successfully, but these errors were encountered: