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
Thanks for the report! The transform is doing as one expects, but because the data is rescaled to the maximum (which becomes negative due to the transform), we get right back to positive numbers again.
The transform = "reverse" argument does not work for scale_size_area() specifically.
Examples :
p <- ggplot(CO2, aes(Plant, conc, size = uptake)) + geom_point(shape = 21) + scale_size(transform = "reverse", max_size = 5)
p <- ggplot(CO2, aes(Plant, conc, size = uptake)) + geom_point(shape = 21) + scale_size_area(transform = "reverse")
The text was updated successfully, but these errors were encountered: