有没有办法像 python 中的 'requeriments.txt' 那样声明 R 包对 github 的依赖关系?
Is there a way to state the dependencies of an R package on github like 'requeriments.txt' from python?
Github 有一个 "Dependency Graph" 可以从 https://github.com/youruser/yourrepo/network/dependencies
访问
Composer、RubyGems、Python PIP、Yarn、npm、Maven 都有一个描述包依赖项的文件,这些文件由 Github 自动读取并填充 "Dependency Graph".
我知道 R Packages 为此使用 DESCRIPTION 文件。但是,有什么已知的方法可以告诉 GitHub 依赖关系?
提前致谢。
尚未:Supported package ecosystems 的完整列表目前不包括 R(2020 年第一季度)
The dependency graph is available for every public repository that define dependencies in a supported package ecosystem using a supported file format.
Github 有一个 "Dependency Graph" 可以从 https://github.com/youruser/yourrepo/network/dependencies
访问Composer、RubyGems、Python PIP、Yarn、npm、Maven 都有一个描述包依赖项的文件,这些文件由 Github 自动读取并填充 "Dependency Graph".
我知道 R Packages 为此使用 DESCRIPTION 文件。但是,有什么已知的方法可以告诉 GitHub 依赖关系?
提前致谢。
尚未:Supported package ecosystems 的完整列表目前不包括 R(2020 年第一季度)
The dependency graph is available for every public repository that define dependencies in a supported package ecosystem using a supported file format.