Overview
R is a powerful statistical programming language. You can process anything from survey data to image/video data, and conduct ANOVAs, regressions, or even machine learning. Below is a list of resources I . The list below serves as a primer to foundational concepts and syntax, and I intend to grow it over time.
Books
R Cookbook – https://rc2e.com
R for Data Science – https://r4ds.had.co.nz
R Graphics Cookbook – https://r-graphics.org
Just Enough R – https://benwhalley.github.io/just-enough-r/
Websites, Blogs
https://education.rstudio.com/learn/beginner
Recommended R Packages
- Data wrangling and visualization toolkit
-
install.packages("tidyverse")
-
- Data wrangling made easy
-
install.packages("dplyr")
- https://dplyr.tidyverse.org/
- Cheatsheet: https://github.com/rstudio/cheatsheets/blob/master/data-transformation.pdf
-
- GUI graph builder
-
install.packages("esquisse")
- Vignette: https://cran.r-project.org/web/packages/esquisse/vignettes/get-started.html
-
- Work with dates, easily
-
install.packages("anytime")
-
- Extract time series features
-
devtools::install_github("nelsonroque/tsfeaturex")
-
- Perform necessary data prep steps
-
devtools::install_github("nelsonroque/ruf")
-
Datasets
https://github.com/nelsonroque/datasets
Last Updated: 02/17/2021