ships with R, but must load
library(lattice)
x qplot()
Rstudio
existing directory
getwd()
dir()
command+enter
sent to the console
script
install
install.packages('ggplot2', dependencies = T)
and load
library(ggplot2)
gDat <- read.delim(".tsv") # tab autocomplete
str(gDat)

R snippet

  • 1.
    ships with R,but must load library(lattice) x qplot() Rstudio existing directory getwd() dir() command+enter sent to the console script install install.packages('ggplot2', dependencies = T) and load library(ggplot2) gDat <- read.delim(".tsv") # tab autocomplete str(gDat)