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
The problem is that arcPaths uses base::make.unique() to construct group names for the shapes, and it doesn't preserve the original ordering. I'll submit a PR.
The text was updated successfully, but these errors were encountered:
dmurdoch
added a commit
to dmurdoch/ggforce
that referenced
this issue
Feb 28, 2021
This is the same issue as thomasp85/ggraph#199 . I don't know which make_unique implementation is preferable; mine is faster on rep(1, 30), but ggraph:::make_unique is a lot faster on 1:30, and would often give shorter new names.
This was reported on StackOverflow here: https://stackoverflow.com/q/66408402/2554330 . The following
code plots the circles in the wrong order, so the overlaps look wrong:
Created on 2021-02-28 by the reprex package (v0.3.0)
The problem is that
arcPaths
usesbase::make.unique()
to construct group names for the shapes, and it doesn't preserve the original ordering. I'll submit a PR.The text was updated successfully, but these errors were encountered: