├── .gitignore ├── R ├── dkdfinfo.r ├── dkgraph.r ├── dkprintxtable.R ├── dkutils.r ├── ggplotref.r ├── logistic.R └── select2Input.r ├── README.md ├── global.R ├── screenshots.jpg ├── server.R ├── shiny-explorer.Rproj ├── templates ├── factor1.rmd ├── factor2.rmd ├── logical1.rmd ├── navbar.rms ├── numeric1.rmd ├── numeric1factor1.rmd ├── numeric1factor2.rmd ├── numeric2.rmd ├── numeric2factor1.rmd ├── numeric3.rmd └── numeric3factor1.rmd ├── ui.R └── www ├── css ├── dkknitr.css └── hover.css └── js ├── customProgress.js ├── highlight.pack.js ├── jquery-ui-1.10.3.custom.min.js ├── jquery.sparkline.min.js └── toc.js /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | figure/ 5 | -------------------------------------------------------------------------------- /R/dkdfinfo.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/dkdfinfo.r -------------------------------------------------------------------------------- /R/dkgraph.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/dkgraph.r -------------------------------------------------------------------------------- /R/dkprintxtable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/dkprintxtable.R -------------------------------------------------------------------------------- /R/dkutils.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/dkutils.r -------------------------------------------------------------------------------- /R/ggplotref.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/ggplotref.r -------------------------------------------------------------------------------- /R/logistic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/logistic.R -------------------------------------------------------------------------------- /R/select2Input.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/R/select2Input.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/README.md -------------------------------------------------------------------------------- /global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/global.R -------------------------------------------------------------------------------- /screenshots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/screenshots.jpg -------------------------------------------------------------------------------- /server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/server.R -------------------------------------------------------------------------------- /shiny-explorer.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/shiny-explorer.Rproj -------------------------------------------------------------------------------- /templates/factor1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/factor1.rmd -------------------------------------------------------------------------------- /templates/factor2.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/factor2.rmd -------------------------------------------------------------------------------- /templates/logical1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/logical1.rmd -------------------------------------------------------------------------------- /templates/navbar.rms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/navbar.rms -------------------------------------------------------------------------------- /templates/numeric1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric1.rmd -------------------------------------------------------------------------------- /templates/numeric1factor1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric1factor1.rmd -------------------------------------------------------------------------------- /templates/numeric1factor2.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric1factor2.rmd -------------------------------------------------------------------------------- /templates/numeric2.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric2.rmd -------------------------------------------------------------------------------- /templates/numeric2factor1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric2factor1.rmd -------------------------------------------------------------------------------- /templates/numeric3.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric3.rmd -------------------------------------------------------------------------------- /templates/numeric3factor1.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/templates/numeric3factor1.rmd -------------------------------------------------------------------------------- /ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/ui.R -------------------------------------------------------------------------------- /www/css/dkknitr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/css/dkknitr.css -------------------------------------------------------------------------------- /www/css/hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/css/hover.css -------------------------------------------------------------------------------- /www/js/customProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/js/customProgress.js -------------------------------------------------------------------------------- /www/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/js/highlight.pack.js -------------------------------------------------------------------------------- /www/js/jquery-ui-1.10.3.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/js/jquery-ui-1.10.3.custom.min.js -------------------------------------------------------------------------------- /www/js/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/js/jquery.sparkline.min.js -------------------------------------------------------------------------------- /www/js/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dkilfoyle/shiny-explorer/HEAD/www/js/toc.js --------------------------------------------------------------------------------