├── .gitignore ├── LICENSE ├── README.md ├── app.R ├── init.R ├── initState.Rdata ├── machLearn.Rproj └── www ├── busy.js └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # machLearn Shiny app 2 | 3 | -------------------------------------------------------------------------------- /app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/app.R -------------------------------------------------------------------------------- /init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/init.R -------------------------------------------------------------------------------- /initState.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/initState.Rdata -------------------------------------------------------------------------------- /machLearn.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/machLearn.Rproj -------------------------------------------------------------------------------- /www/busy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/www/busy.js -------------------------------------------------------------------------------- /www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davesteps/machLearn/HEAD/www/style.css --------------------------------------------------------------------------------