Open barnabywalker opened 5 years ago
I suggest you use the fork by @miraKlein. Her pull request fixes this.
As this vqv/ggbiplot repository is no longer maintained, the fix hasn't been pulled.
Install @miraKlein's version with:
devtools::install_github("miraKlein/ggbiplot")
Thanks, that works perfectly!
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?