#good habit for data science education ?plot help(plot) #get used to data plot(iris) str(iris) tips=read.csv('http://raw.githubusercontent.com/mwaskom/seaborn-data/master/tips.csv') str(tips) head(tips) tail(tips) summary(tips) install.packages("dplyr") #now you can use '%>%' !!! install.packages("ggplot2") # visualization tool library(dplyr) library(ggplot2) tips%>%ggplot(aes(size)) + geom_hist..