我正在使用R
查看其中一个Kaggle机器学习教程我正在使用Debian Jessie,令我惊讶的是,Debian上的打包R似乎是去年6月发布的最新版本
$ apt show r-recommended
Version: 3.3.1-1~jessiecran.0
$ R
R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
祝贺所有参与其中的人!
所以教程开始了:
# Load packages
library('ggplot2') # visualization
library('ggthemes') # visualization
library('scales') # visualization
library('dplyr') # data manipulation
library('mice') # imputation
library('randomForest') # classification algorithm
其中一些软件包可以作为更多jessie软件包安装
$ sudo apt install r-cran-ggplot2 r-cran-scales r-cran-dplyr r-cran-mice r-cran-randomforest
离开' ggthemes'和'老鼠'。
所以我进入R并输入
> install.packages('ggthemes', dep = TRUE)
它说:
package ‘ggthemes’ is not available (for R version 3.3.1)
但是
https://cran.r-project.org/web/packages/ggthemes/index.html
存在,其中包括:
Version: 3.2.0
Depends: R (≥ 3.0.0)
看起来不错。
那么我做错了什么,我该如何安装' ggthemes'和'老鼠'
答案 0 :(得分:0)
实际上这似乎是英国镜子的一个问题。如果我选择从美国CA1镜像安装,则安装和构建软件包。