Getting Started with R

Downloads

To start working with R you must first download R and an IDE.
Downloading R

When choosing a CRAN, pick the closest location to you

Reading Material

The Essentials

In learning order

Quick Tips

Packages

When a package is first used in RStudio, it must first be installed.
install.packages("dplyr")

Every time RStudio is launched the needed packages must be loaded.
library(dplyr)

Many of the widely used packages have cheat sheets for a quick reference guide on how to use the most common functions.

Most Used Packages

Database and other Data Source Connections

Data Tables

DT

Math/Statistical