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 dependency on plyr means that ggbiplot masks functions from dplyr. This isn't too much of a problem if loading the package using library(ggbiplot), as I can just reorder my imports, but ggbiplot also loads all of plyr if you use the ggbiplot::ggbiplot() syntax.
So currently there is no way of preventing ggbiplot from masking dplyr functions without ensuring that you explicitly import ggbiplot first.
Is there some way of changing how ggbiplot uses the functions from plyr to prevent it being fully loaded when you use the ggbiplot::ggbiplot() syntax?
The text was updated successfully, but these errors were encountered:
The dependency on
plyr
means thatggbiplot
masks functions fromdplyr
. This isn't too much of a problem if loading the package usinglibrary(ggbiplot)
, as I can just reorder my imports, butggbiplot
also loads all ofplyr
if you use theggbiplot::ggbiplot()
syntax.So currently there is no way of preventing
ggbiplot
from maskingdplyr
functions without ensuring that you explicitly importggbiplot
first.Is there some way of changing how
ggbiplot
uses the functions fromplyr
to prevent it being fully loaded when you use theggbiplot::ggbiplot()
syntax?The text was updated successfully, but these errors were encountered: