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
{{ message }}
This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
Funny that I found your repo that we discussed during the conference in this way :)
In any case, I have come to warn you that the unexported range constructors from ggplot2 are being superseded by the exported {scales} versions. Here is an example where you're using these:
If you replace these constructors with scales::ContinuousRange$new() and scales::DiscreteRange$new(), all should sync up with the impending dev version of ggplot2. For more context, see tidyverse/ggplot2#5086.
Cheers!
The text was updated successfully, but these errors were encountered:
Oh that's cool. Does scales::ContinuousRange$new() work only with the dev version? I.e., should I add a version check for ggplot to avoid breaking the compatibility if an older ggplot version is installed?
Anyways, I wrote the package for a specific plot I needed repeatedly in a paper and knew it was very fragile. Any chance you would add the increased distance between groups to one of your packages? I would be happy to abandon this hack of a package 😅
Yeah that sounds like something that could fit in ggh4x. I've opened teunbrand/ggh4x#94, but I have no idea when I'll get around to implementing anything 😅
Hi Constantin,
Funny that I found your repo that we discussed during the conference in this way :)
In any case, I have come to warn you that the unexported range constructors from ggplot2 are being superseded by the exported {scales} versions. Here is an example where you're using these:
gggroupedscale/R/scale-discrete-grouped.R
Lines 160 to 161 in 1513644
If you replace these constructors with
scales::ContinuousRange$new()
andscales::DiscreteRange$new()
, all should sync up with the impending dev version of ggplot2. For more context, see tidyverse/ggplot2#5086.Cheers!
The text was updated successfully, but these errors were encountered: