vqv / ggbiplot

A biplot based on ggplot2
302 stars 159 forks source link

Non-existing version of 'scales' required? #38

Open kenbeek opened 6 years ago

kenbeek commented 6 years ago

When loading ggbiplot (library(ggbiplot) the following message appears

Error: package or namespace load failed for ‘ggplot2’ in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
namespace ‘scales’ 0.4.1 is being loaded, but >= 0.4.1.9002 is required
Error: package ‘ggplot2’ could not be loaded

However, version 0.4.1.9002 of Scales does not seem to exist. It is unavailable through install.packages() and it is not listed at https://github.com/hadley/scales/releases.

Using ggbiplot version 0.55 on R 3.4.1 on Ubuntu 16.04.

Thanks in advance.

tyokota commented 6 years ago
install.packages("devtools")
library(devtools)
install_github("hadley/scales")