Page: R you ready for R?
In addition to reviewing this Page, you might find it useful to read my "Getting Started in R" document, which offers useful background on R and RStudio, as well as step-by-step instructions for getting up and running.
Download R Links to an external site.(link provides a list of sites that host the R software; try Duke or Washington University) and RStudio Links to an external site.-- R is a free (open source) software environment for statistical computing and graphics. RStudio is an integrated development environment that is easier to operate in than R and is perhaps the most popular way for people to use R. You'll need to download both, but my recommendation is to use RStudio. This blog post Links to an external site. provides a helpful talk through of both R and RStudio.
Although working in RStudio and learning/using R code directly may be the most gratifying, it can also be somewhat challenging. If you're struggling with learning the coding language, you can explore some of the Graphical User Interfaces (GUIs) that have been developed for R. They are reviewed here Links to an external site., with links to their respective reviews and sites. Some of them offer more traditional point-and-click menu systems, along with the ability to see the corresponding R code. You may find BlueSky Links to an external site. (mirrors SPSS) and R Commander Links to an external site. to be the most familiar. In the end, though, I recommend trying to make a go of it with RStudio. There's value in learning to work with the code directly.
Here's a good walk-through of how to get started with R and RStudio Links to an external site..
Generic R Commands
You can find my generic R scripts (Word documents) for various tests here.
Helpful Resources
These are some readings and websites that I found to be quite useful in getting to understand and learn R.
- ComputerWorld's "Beginner's guide to R Links to an external site."
- RStudio's guide on learning R/RStudio Links to an external site.
- R for the Rest of Us Links to an external site.
- Quick-R by DataCamp Links to an external site. -- A very helpful website for learning about R. In addition to background on R and how to get up and running, it contains pages on statistics Links to an external site. and graphing Links to an external site.. A related book Links to an external site. for purchase.
- Torfs and Brauer, "A (Very) Short Introduction to R Links to an external site."
- Contributed documentation for R Links to an external site. (includes many intro books, among other resources)
- UCLA's Institute for Digital Research & Education Links to an external site.
- Richard Blissett's "A Quick Introduction to R (for Stata Users) Links to an external site." (I found this to be a clear description of R and how Stata users can make sense of it.
- Oscar Torres-Reyna's "Getting Started in R~Stata Links to an external site." -- offers side-by-side comparisons for common functions.
- Muenchen and Hilbe, R for Stata Users Links to an external site.
- Grolemund and Wickham's "R for Data Science Links to an external site." -- a free online book that offers a nice introduction to R.
Very Useful Packages
R makes use of "packages" that users write to either accomplish new tasks or accomplish old tasks better. There are thousands of packages. Here are some of the packages that you are likely to make heavy use of.
- tidyverse
- car
- haven
- psych
- ggplot2
- dplyr
Data Visualization with R
Much of what people are looking to do with data is to understand it better through visualization. The following resources will help you develop proficiency with data visualization in R.
- The R Graph Gallery Links to an external site. -- This website contains an array of graphs and the coding behind them.
- Plotly Graph Gallery Links to an external site. -- This website contains an array of plotly produced graphs and the coding behind them.
- UCLA IDRE slide presentation on ggplot2
- ggplot2 cheat sheet
- Hadley Wickham's (creator of ggplot2) book (online version Links to an external site.)
- Kieran Healy's Data Visualization: A Practical Introduction Links to an external site.. An online version Links to an external site. of the book can be found here (click on the menu at the top).
- Winston Chang's R Graphics Cookbook Links to an external site. (free online version).
- Michael Freeman (CC sociology alum) and Joel Ross, Programming Skills for Data Science: Start Writing Code to Wrangle, Analyze, and Visualize Data with R Links to an external site.. An online version that appears to be similar to the book can be found here Links to an external site..
- Shiny Links to an external site. -- An R package that makes it easy to build interactive web apps straight from R.
- Lovelace et al., "Introduction to Visualizing Spatial Data in R Links to an external site."
- I like this site Links to an external site. and his list of resources Links to an external site..