Git, GitHub, and R
Wondering what this Git thing is? https://www.rstudio.com/resources/videos/happy-git-and-gihub-for-the-user-tutorial/
Local
- Data Science Hobart https://twitter.com/DataScienceHbt, https://datasciencehobart.github.io/
- R Ladies Hobart https://twitter.com/hashtag/RLadiesHobart?src=hash
- Gentle R http://australianantarcticdatacentre.github.io/GentleR/About/
- HRUG Hobart R Users Group https://www.meetup.com/Hobart-R-Users-Group/
Worldwide
- Twitter #rstats
- Stackoverflow #r topic
- Stackoverflow #ggplot2 topic
- Spatial StackExchange
- R spatial mailing list
- R help mailing list
BOOK Happy Git and GitHub for the useR
Software Carpentry: http://swcarpentry.github.io/git-novice/
Package Development Cheat Sheet
https://cran.r-project.org/web/packages/devtools/README.html
- RStudio and GitHub together are very powerful
- install_github
- check out package
- create package, start version control, link to GitHub
- Travis, Appveyor, covr, badges, R-hub,
Key tricks
devtools::create("../newpkg")
devtools::use_readme_rmd()
devtools::use_vignette("")
devtools::build() ## Ctrl/Cmd-SHIFT-B
devtools::check() ## Ctrl/Cmd-SHIFT-E
devtools::release()