R Report Tables - gizotso/R GitHub Wiki
- R2HTML: HTML Exportation for R Objects
- htmlTable package: Advanced Tables for Markdown/HTML
- xtable package: Export Tables to LaTeX or HTML
- knitr --> R markdown
- latex
Freq Table
- table() | prop.table()
- gmodels::CrossTable
- http://stats.stackexchange.com/questions/13855/is-there-an-r-equivalent-of-sas-proc-freq
Summary / Tables / Heatma
library(plyr)
smry <- ddply(dat, .(a, b), summarise, xmean=mean(x), ymean=mean(y), yvar=var(y))
-
Heatmap
-
http://www.r-bloggers.com/proc-report-for-simple-statistics/
-
https://sachsmc.github.io/knit-git-markr-guide/knitr/knit.htmls
-
http://www.r-bloggers.com/beautiful-table-outputs-in-r-part-2-rstats-sjplot/
-
Stackoverflow 27114926
-
htmlwidgets.org > DataTable, d3heatmap
-
Pacakge ReporteRs (david gohel - use Java)