```{r include=FALSE} #install packages require(RCurl) require(tidyr) require(ggplot2) doubs.URL <- getURL("https://raw.githubusercontent.com/Monsauce/QCBS-Open-Science-Workshop/master/doubsspe.csv") doubs<-read.csv(text=doubs.URL) #the data is in wide form so let's convert it to long doubs.long<-gather(doubs, species, count, CHA:ANG) ```