美文网首页
R包开发的相关学习资源

R包开发的相关学习资源

作者: Kevin_Hhui | 来源:发表于2021-08-06 14:39 被阅读0次

基础

R Packages https://r-pkgs.org/r.html
文件名规范 https://style.tidyverse.org/files.html
包中文件规范 https://style.tidyverse.org/package-files.html
Devtools cheatsheet https://github.com/rstudio/cheatsheets/raw/master/package-development.pdf
可重复代码怎么写 https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example

工具

usethis https://usethis.r-lib.org/articles/articles/usethis-setup.html
devtools https://devtools.r-lib.org/
testthat https://testthat.r-lib.org/
roxygen2 https://roxygen2.r-lib.org/

进阶

Advanced R https://adv-r.hadley.nz/index.html
Writing R Extensions https://cran.r-project.org/doc/manuals/R-exts.html

CRAN规定

CRAN Repository Policy https://cran.r-project.org/web/packages/policies.html

Bioconductor规定

package guidelines https://www.bioconductor.org/developers/package-guidelines/
Package Submission https://www.bioconductor.org/developers/package-submission/
guide developers https://bioconductor.org/developers

其他推荐

remotes https://remotes.r-lib.org/articles/dependencies.html
Mastering Software Development in R https://bookdown.org/rdpeng/RProgDA/building-r-packages.html
为新手准备的现代化 R 包开发流程 https://swsoyee.vercel.app/2021/02/writing-r-packages-a-modern-workflow-for-beginners
rOpenSci Packages: Development, Maintenance, and Peer Review https://devguide.ropensci.org/index.html
R Packages 中文 https://r-packages-zh-cn.readthedocs.io/zh_CN/latest/
Develop an R package for CRAN vs BioConductor https://www.biostars.org/p/233043/

Git教程 https://backlog.com/git-tutorial/cn/
Happy Git and GitHub for the useR https://happygitwithr.com/

参考来源: https://www.yuque.com/xiayonghe/dev_r_pack

相关文章

  • R包开发的相关学习资源

    基础 R Packages https://r-pkgs.org/r.html[https://r-pkgs.or...

  • 生信零基础 Day6 by Sure栗子

    继续R学习-R包的简单应用 以下资源均来自“生信星球公众号” R包及其小抄 R包是别人写好的封装好了的命令包,有各...

  • Day6R包学习-谢大飞

    学习R包 包是 R 函数、实例数据、预编译代码的集合,包括 R 程序,注释文档、实例、测试数据等。R 语言相关的包...

  • 学习小组Day6笔记——小文

    学习R包 什么是R包? R包是大神们开发好的可以通过简单的命令就实现各种强大功能的函数的集合。 安装和加载R包 设...

  • R-编写R包-入门篇

    总结一下目前学习的,基于Rstudio的创建R包流程。 Part1:创建R包基本流程 step1:建立R包开发环境...

  • 听说你想从github安装R包

    众所周知,R包一般有2个版本 CARN官方版 & github开发版,关于R包的安装之前已经写了相关进行接受,本节...

  • R包里的帮助文档是怎么写的

    花花写于2020-3-5 本文是《R包开发》第5章的学习记录,讲述帮助文档写法。 R包开发时需要写的文档,就是使用...

  • 【r<-高级|实战】学习创建R包

    如果你想要的是快速构建R包骨架,推荐阅读在巨人的肩膀前行 催化R包开发进行学习;如果你想了解更为基本的R包创建知识...

  • 用Rstudio创建R包--感悟

    学R包请参考此链接:Rstudio 开发R包文档 其他文章:facebook-symbolsRstudio 开发R...

  • 生信学习小组第6天-Iris

    学习R包 首先明白R镜像的作用:R镜像是为了方便世界各地的使用者下载R软件及相关软件包,在各地设置的镜像。各地的镜...

网友评论

      本文标题:R包开发的相关学习资源

      本文链接:https://www.haomeiwen.com/subject/runbvltx.html