Programming

#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..
김해김씨99대손
'Programming' 카테고리의 글 목록 (6 Page)