我正在尝试使用一个工作示例中的github包。我使用了建议的方法
here以使install-github工作
library(devtools)
library(httr)
set_config(config(ssl_verifypeer = 0L))
install.packages("install_github")
install_github("ggbiplot", "vqv")
我收到一条警告,将我重定向到R website
安装页面,然后出现错误Error in parse_repo_spec(repo) : Invalid git repo specification: 'ggbiplot'
最后,我想运行这段代码
# Load data
data(iris)
log.ir <- log(iris[, 1:4])
ir.species <- iris[, 5]
#PCA
ir.pca <- prcomp(log.ir,
center = TRUE,
scale. = TRUE)
#Plot
g <- ggbiplot(ir.pca, obs.scale = 1, var.scale = 1,
groups = ir.species, ellipse = TRUE,
circle = TRUE)
g <- g + scale_color_discrete(name = '')
g <- g + theme(legend.direction = 'horizontal',
legend.position = 'top')
print(g)
1条答案
按热度按时间plicqrtu1#
你需要
user/repo
语法来指定repo,因为GitHub上有多个名为ggbiplot
的包--R包有157个fork,你必须告诉R你想要哪个:现在我们可以运行您的代码: