Nothing
dir.create("tables", showWarnings=FALSE)
results <- scan("results.dat", quiet=TRUE)
frequency <- data.frame(table(Month=month.abb[results]))
cumulative <- data.frame(Number=results, CumSum=cumsum(results))
write.csv(frequency, file="tables/A.csv", row.names=FALSE, quote=FALSE)
write.csv(cumulative, file="tables/B.csv", row.names=FALSE, quote=FALSE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.