Yes!
My first contribution…
My first package contribution
My first code contribution
Static repository of released packages
install.packages("munsell")
https://CRAN.R-project.org/package=munsell
Web platform for hosting version controlled (git) repositories
devtools::install_github("munsell")
https://github.com/cwickham/munsell
Github eases collaboration
But remember:
Keep your eyes open for links to github in talks
Visit repo and look around.
R code is in the R
directory (might also be in src
, data-raw
).
Learn about package structure at http://r-pkgs.had.co.nz/
Use an issue to: file a bug report, suggest a feature or ask about how best to contribute.
Try starting with documentation (like I did).
.R
not .Rd
, and re-generate .Rd
README.md
may be generated by README.Rmd
You need to master a few things:
is:issue is:open label:beginner language:R
Write a package: Writing an R package from scratch
Questions?