├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── Example_1 ├── server.R └── ui.R ├── Example_2 ├── server.R └── ui.R ├── Example_3 ├── server.R └── ui.R ├── Example_4 ├── server.R └── ui.R ├── Example_5 ├── server.R └── ui.R ├── Example_6 ├── server.R └── ui.R ├── NAMESPACE ├── R ├── common.R ├── core.R ├── default.R ├── makeInput.R ├── makeOutput.R └── render.R ├── README.Rmd ├── README.md ├── autoshiny.Rproj ├── man ├── File.Rd └── make.Rd ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png ├── screenshot4.png ├── screenshot5.png ├── screenshot6.png └── tests └── test.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Example_1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_1/server.R -------------------------------------------------------------------------------- /Example_1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_1/ui.R -------------------------------------------------------------------------------- /Example_2/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_2/server.R -------------------------------------------------------------------------------- /Example_2/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_2/ui.R -------------------------------------------------------------------------------- /Example_3/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_3/server.R -------------------------------------------------------------------------------- /Example_3/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_3/ui.R -------------------------------------------------------------------------------- /Example_4/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_4/server.R -------------------------------------------------------------------------------- /Example_4/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_4/ui.R -------------------------------------------------------------------------------- /Example_5/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_5/server.R -------------------------------------------------------------------------------- /Example_5/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_5/ui.R -------------------------------------------------------------------------------- /Example_6/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_6/server.R -------------------------------------------------------------------------------- /Example_6/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/Example_6/ui.R -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/common.R -------------------------------------------------------------------------------- /R/core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/core.R -------------------------------------------------------------------------------- /R/default.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/default.R -------------------------------------------------------------------------------- /R/makeInput.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/makeInput.R -------------------------------------------------------------------------------- /R/makeOutput.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/makeOutput.R -------------------------------------------------------------------------------- /R/render.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/R/render.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/README.md -------------------------------------------------------------------------------- /autoshiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/autoshiny.Rproj -------------------------------------------------------------------------------- /man/File.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/man/File.Rd -------------------------------------------------------------------------------- /man/make.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/man/make.Rd -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot2.png -------------------------------------------------------------------------------- /screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot3.png -------------------------------------------------------------------------------- /screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot4.png -------------------------------------------------------------------------------- /screenshot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot5.png -------------------------------------------------------------------------------- /screenshot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/screenshot6.png -------------------------------------------------------------------------------- /tests/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alekrutkowski/autoshiny/HEAD/tests/test.R --------------------------------------------------------------------------------