Skip to content

nschiett/rladies_package_workshop_2020

Repository files navigation

Rladies package workshop Montpellier 2020

rladies logo

This repository provides the presentation for the R ladies meeting in Montpellier (02/2020) on how to create an R package. It contains many links to useful resources.

To get started

install.packages(c("devtools", "roxygen2", "usethis"))
library(devtools)
library(roxygen2)
library(usethis)

Resources

  • Hadley Wickham’s book on R packages link (Really it has everything you need!)
  • Hillary Parker’s blog post on writing an R package is a great start!
  • Everything you need to know about git and GitHub link
  • blog post by Julia Silge to get started with Travis-CI
  • The tidyverse style guide
  • Packages to help you be stylish in R: lintr and styler
  • Add some complements: praise
  • Blog by Emil Hvitfeldt on creating R packages with usethis blog
  • Presentation by Nicolas Casajus (in French :) ) link
  • talk on debugging by Jenny Brian
  • talk on best practices for programming with ggplot2 by Dewey Dunnington
  • Submitting to CRAN
  • GitHub actions