Perform basic analysis on the car accidents in 2013, visualise the data, and time permitting do some inferential statistics!
library(data.table) accidents<-fread(system.file("extdata/Accidents2013.csv",package = "Rtraining")) summary(accidents)
knitr::kable(accidents[order(Police_Force), .(Volume=.N, TypicalSeverity=mean(Accident_Severity), SevSD=sd(Accident_Severity), TypicalCasualties=mean(Number_of_Casualties), CasSD=sd(Number_of_Casualties) ), Urban_or_Rural_Area])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.