Compilation of functions used frequently by Hochwagen lab members.
You can install the package directly from the source code on GitHub. For that you will need Hadley Wickham’s devtools R package:
install.packages("devtools")Once you have devtools you can install and load hwglabr:
devtools::install_github("hochwagenlab/hwglabr")
library(hwglabr)Use the package GitHub repo and the documentation website. Function documentation is accessible within R in the standard way, by typing one of the following:
help("function_name")
?function_nameYou can also get the list of included functions directly within R using one of the following:
ls("package:hwglabr")   # List function names
lsf.str("package:hwglabr")   # List function names and their arguments