Skip to content

Instantly share code, notes, and snippets.

View xinbinhuang's full-sized avatar
🍣
Sushi fan

Xinbin Huang xinbinhuang

🍣
Sushi fan
View GitHub Profile
@xinbinhuang
xinbinhuang / Load-Multiple-R-Packages.R
Created January 28, 2019 04:22 — forked from RobertMyles/Load-Multiple-R-Packages.R
Load multiple packages at the same time in R
# library() or require() only load one package at a time
# but...
Packages <- c("dplyr", "ggplot2", "rstan", "readr")
lapply(Packages, library, character.only = TRUE)
# this loads as many as you put in 'Packages'. They need to be installed first, of course.
@xinbinhuang
xinbinhuang / shell-learning-helpers.md
Created January 28, 2019 01:59 — forked from jennybc/shell-learning-helpers.md
shell learning helpers