KU-AICC202-Intro-to-Data-Science

R

Statistical Computing and graphics software project created by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand in 1993, and is currently on Public Domain being developed by the R Development Core Team with large number of packages or libraries.

Setup

> library()   # see list of all installed packages or go to package window in RStudio, packages are stored in Comprehensive R Archive Network (CRAN) we can browse in the r-project CRAN website

> install.packages("ggplot2")  # install package for Jupyter package or use package window to install

> help(rnorm)  # get help on a function

> example(plot)  # see examples of using a function

> help.start()  # starts HTML based global help

> source("filename.R")  # run the script on the console -> CTRL+SHIFT + S in editor window,  CTRL + ENTER to run a line

Tutorials