- rstudio
- packrat - roughly equivalent to python's virtualenv (isolated package env)
- drake/remake - like GNU make (I think drake is better maintained at this point, but few examples)
- RStudio's projects - at least drops you in the right working directory & ties in with packrat
- Make a package! - higher startup cost, but user installation is trivial
- rocker (R through Docker)
- R.matlab - import .mat files
- data.table - data frames but better, faster, stronger (&
freadfor flat files) - Matrix (capital M) - dense & sparse matrices
- Rcpp - R <-> C++ interface
- RcppEigen, RcppArmadillo - Interfaces to Eigen & Armadillo linear algebra libraries, respectively
- ggplot2
- lme4 - (generalized) linear mixed models via (Re)ML
- brms - (generalized) (non)linear (mixed) models + more via Stan language
- glmmTMB - (generalized) linear mixed models, probably faster than
lme4::glmer()at large sample sizes
- Stan - cutting-edge MCMC, automatic differentiation, hooks into R, python, MATLAB, ...
- TMB - MLE, automatic differentiation, MCMC probably soon?
- nimble - modular modeling/MCMC sampling, autodiff coming
- rmarkdown/knitr