/WMRUG

West Michigan R Users Group Materials

Primary LanguageRGNU General Public License v3.0GPL-3.0

West Michigan R Users Group Code and Materials

These materials are my contributions to the West Michigan R Users Group meetups.

See the main WMRUG github account for more code and presentations from other contributors. You can also check out their blog for meeting highlights!

Contents

Rcpp

March 2018

Introduces basic concepts of C++ programming and the Rcpp API for writing high-performance C++ code in R. Also points to the use-case of the mvrt package which uses the Armadillo C++ linear algebra library (via RcppArmadillo) to extend the functionality of Rcpp. This also touches on some of the considerations that need to be made when developing packages which include compiled code.

See presentation here.


Mapping

March 2017 and October 2017

This demonstrated the mapping capabilities of R using several packages. User-friendly packages such as chloroplethr and ggmap are discussed, as well as low-level mapping using shapefiles and other geographic data provided by government agencies.


Packages

June 2017

Introduces the basics of creating your own package using friendly RStudio tools and packages. The devtools and roxygen2 packages are featured prominently.


Machine Learning

August 2016

This was an overview of using various statistical modeling and algorithmic techniques to predict credit defaults. The different methods were compared using ROC curves. There is also a small primer on PCA.


Intro2R

June 2016

This script introduces the basic concepts and quirks of R.