软件包之间的区别

软件包之间的区别

本文介绍了r-base 和 r-recommended 软件包之间的区别的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能告诉我基本包和推荐包有什么区别.

Can anyone tell me what is the difference between base and recommended packages.

如果有提到基础包和推荐包的链接,请提供链接.

If there is link where base and recommended packages are mentioned please provide the links.

推荐答案

差异实际上来自于 R Core 和 R 代码的组织方式,例如在上游 SVN 存储库中.

The difference actually comes from R Core and the way the R code is organised, for example in the upstream SVN repository.

src/library/ 中,您拥有所有基础"包:

In src/library/, you have all 'base' packages:

  • 基础
  • 编译器
  • 数据集
  • 图形
  • grDevices
  • 网格
  • 方法
  • 并行
  • 样条
  • 统计数据
  • stats4
  • tcltk
  • 工具
  • 翻译
  • 实用程序.

而且这些都不在 CRAN 上——它们仅作为base R"的一部分存在.

And none of these are on CRAN -- they only exist as part of 'base R'.

你有一个目录 src/library/Recommended 默认为空,但可以使用帮助脚本 (tools/rsync-recommended) 来填充从特殊(版本化)目录中获取CRAN 推荐包列表.对于 R 版本 3.3.3,它是CRAN/src/contrib/3.3.3/Recommended/(CRAN 部分是您的默认镜像).它包含

And you have a directory src/library/Recommended which by default is empty, but can be filled by using a helper script (tools/rsync-recommended) to get the list of Recommended packages off CRAN from a special (versioned) directory. For R version 3.3.3, it isCRAN/src/contrib/3.3.3/Recommended/ (with the CRAN part being your default mirror). It contains

  • KernSmooth
  • 质量
  • 矩阵
  • 开机
  • 集群
  • 代码工具
  • 外国
  • 格子
  • mgcv
  • nlme
  • 网络
  • rpart
  • 空间
  • 生存

2016-09-06 utils 添加到第一组.

这篇关于r-base 和 r-recommended 软件包之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 16:36