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
VI cannot process ggplot objects with flipped or non-Cartesian coordinates
I think that the VI method is actually capable of processing different types of Coord systems like flipped with ease.
It seems that
if (!(.getGGCoord(x, xbuild) %in% c("CoordCartesian", "CoordFixed"))) {
message("VI cannot process ggplot objects with flipped or non-Cartesian coordinates")
return(NULL)
}
At the start of .VIstruct.ggplot() and .getGGCoord() need to be updated.
The text was updated successfully, but these errors were encountered:
Sounds reasonable.
You’ll see the use of message() in files (other than Messages.R); take them as an indication that it is something I’d like to see improved somehow.
Currently, the VI method will only work if the plots coordinate first calls is either "CoordCartesian" or "CoordFixed".
This means that a plot like:
Will print out a message like this:
I think that the VI method is actually capable of processing different types of Coord systems like flipped with ease.
It seems that
At the start of
.VIstruct.ggplot()
and.getGGCoord()
need to be updated.The text was updated successfully, but these errors were encountered: