R
应用介绍
R是用于统计分析、绘图的语言和操作环境。R属于GNU系统的一个自由、免费、源代码开放的软件,它是一个用于统计计算和统计制图的优秀工具。
使用指南
R语言可以直接使用conda进行安装,conda使用请参考:doc: 平台相关教程 <conda>,安装步骤如下:
channel配置
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls yes
conda config --set channel_priority flexible
安装R语言
默认安装最新版本:
conda install r-base
指定版本安装:
conda install r-base=3.6.1
注解
3.6.1为版本号,可以根据自己需要更改为其他版本号。
安装其他相关包:
conda install r-stringi
常见问题
conda安装库时报错failed with initial frozen solve. Retrying with flexible solve.
解决:检查是否设定了conda config --set channel_priority flexible
。