R ggplot2 intro
Package "ggplot2"
library(ggplot2)
2 main functions: qplot() and ggplot(), more flexible
qplot()
It plots in a single function
#scatter plot with axis label
qplot(x, y, data=tab)
#color label points based on z
qplot(x, y, data=tab, color=z)
#now w...
massyfigini.hashnode.dev2 min read