├── .gitignore ├── Exercise_00.R ├── Exercise_01.R ├── Exercise_02.R ├── Exercise_03.R ├── Exercise_04.R ├── Exercise_05.R ├── Exercise_07.R ├── README.md ├── Solution_00.R ├── Solution_01.R ├── Solution_02.R ├── Solution_03.R ├── Solution_04.R ├── Solution_05a.R ├── Solution_05b.R ├── Solution_07a.R ├── Solution_07b.R ├── Unsolution_00.R ├── Unsolution_01.R ├── Unsolution_01b.R ├── Unsolution_02.R ├── bobbytables.png ├── bookmark.R ├── insertui.R ├── iris.csv ├── reactive-graph-1.png ├── reactive-graph-1a.png ├── reactive-graph-1b.png ├── reactive-graph-2.png ├── reactive-graph-3.png ├── reactive-graph-4.png ├── reactive-graph-5.png ├── reactive-graph-6.png ├── reactive-graph-7.png ├── reactive-graph-8.png ├── reactivity-tutorial.Rproj ├── req_v1_broken.R ├── req_v2_badfix.R ├── req_v3_goodfix.R ├── slides.Rmd ├── slides.css ├── slides.html ├── slides_files └── reveal.js-3.2.0 │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── bower.json │ ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reveal.css │ ├── reveal.scss │ └── theme │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── fonts │ │ ├── Lato.ttf │ │ ├── LatoBold.ttf │ │ ├── LatoBoldItalic.ttf │ │ ├── LatoItalic.ttf │ │ ├── Montserrat.ttf │ │ ├── NewsCycle.ttf │ │ ├── NewsCycleBold.ttf │ │ ├── OpenSans.ttf │ │ ├── OpenSansBold.ttf │ │ ├── OpenSansBoldItalic.ttf │ │ ├── OpenSansItalic.ttf │ │ ├── Quicksand.ttf │ │ ├── QuicksandBold.ttf │ │ ├── UbuntuBold.ttf │ │ ├── UbuntuBoldItalic.ttf │ │ ├── UbuntuLight.ttf │ │ └── UbuntuLightItalic.ttf │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source │ │ ├── beige.scss │ │ ├── black.scss │ │ ├── blood.scss │ │ ├── league.scss │ │ ├── moon.scss │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── simple.scss │ │ ├── sky.scss │ │ ├── solarized.scss │ │ └── white.scss │ │ ├── template │ │ ├── mixins.scss │ │ ├── settings.scss │ │ └── theme.scss │ │ └── white.css │ ├── index.html │ ├── js │ └── reveal.js │ ├── lib │ ├── css │ │ └── zenburn.css │ ├── font │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ └── js │ │ ├── classList.js │ │ ├── head.min.js │ │ └── html5shiv.js │ ├── package.json │ ├── plugin │ ├── highlight │ │ └── highlight.js │ ├── markdown │ │ ├── example.html │ │ ├── example.md │ │ ├── markdown.js │ │ └── marked.js │ ├── math │ │ └── math.js │ ├── multiplex │ │ ├── client.js │ │ ├── index.js │ │ └── master.js │ ├── notes-server │ │ ├── client.js │ │ ├── index.js │ │ └── notes.html │ ├── notes │ │ ├── notes.html │ │ └── notes.js │ ├── print-pdf │ │ └── print-pdf.js │ ├── search │ │ └── search.js │ └── zoom-js │ │ └── zoom.js │ └── test │ ├── qunit-1.12.0.css │ ├── qunit-1.12.0.js │ ├── test-markdown-element-attributes.html │ ├── test-markdown-element-attributes.js │ ├── test-markdown-slide-attributes.html │ ├── test-markdown-slide-attributes.js │ ├── test-markdown.html │ ├── test-markdown.js │ ├── test-pdf.html │ ├── test-pdf.js │ ├── test.html │ └── test.js ├── slides_presenter.css └── user2016-tutorial-shiny.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/.gitignore -------------------------------------------------------------------------------- /Exercise_00.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_00.R -------------------------------------------------------------------------------- /Exercise_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_01.R -------------------------------------------------------------------------------- /Exercise_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_02.R -------------------------------------------------------------------------------- /Exercise_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_03.R -------------------------------------------------------------------------------- /Exercise_04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_04.R -------------------------------------------------------------------------------- /Exercise_05.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_05.R -------------------------------------------------------------------------------- /Exercise_07.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Exercise_07.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/README.md -------------------------------------------------------------------------------- /Solution_00.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_00.R -------------------------------------------------------------------------------- /Solution_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_01.R -------------------------------------------------------------------------------- /Solution_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_02.R -------------------------------------------------------------------------------- /Solution_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_03.R -------------------------------------------------------------------------------- /Solution_04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_04.R -------------------------------------------------------------------------------- /Solution_05a.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_05a.R -------------------------------------------------------------------------------- /Solution_05b.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_05b.R -------------------------------------------------------------------------------- /Solution_07a.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_07a.R -------------------------------------------------------------------------------- /Solution_07b.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Solution_07b.R -------------------------------------------------------------------------------- /Unsolution_00.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Unsolution_00.R -------------------------------------------------------------------------------- /Unsolution_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Unsolution_01.R -------------------------------------------------------------------------------- /Unsolution_01b.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Unsolution_01b.R -------------------------------------------------------------------------------- /Unsolution_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/Unsolution_02.R -------------------------------------------------------------------------------- /bobbytables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/bobbytables.png -------------------------------------------------------------------------------- /bookmark.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/bookmark.R -------------------------------------------------------------------------------- /insertui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/insertui.R -------------------------------------------------------------------------------- /iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/iris.csv -------------------------------------------------------------------------------- /reactive-graph-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-1.png -------------------------------------------------------------------------------- /reactive-graph-1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-1a.png -------------------------------------------------------------------------------- /reactive-graph-1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-1b.png -------------------------------------------------------------------------------- /reactive-graph-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-2.png -------------------------------------------------------------------------------- /reactive-graph-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-3.png -------------------------------------------------------------------------------- /reactive-graph-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-4.png -------------------------------------------------------------------------------- /reactive-graph-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-5.png -------------------------------------------------------------------------------- /reactive-graph-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-6.png -------------------------------------------------------------------------------- /reactive-graph-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-7.png -------------------------------------------------------------------------------- /reactive-graph-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactive-graph-8.png -------------------------------------------------------------------------------- /reactivity-tutorial.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/reactivity-tutorial.Rproj -------------------------------------------------------------------------------- /req_v1_broken.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/req_v1_broken.R -------------------------------------------------------------------------------- /req_v2_badfix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/req_v2_badfix.R -------------------------------------------------------------------------------- /req_v3_goodfix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/req_v3_goodfix.R -------------------------------------------------------------------------------- /slides.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides.Rmd -------------------------------------------------------------------------------- /slides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides.css -------------------------------------------------------------------------------- /slides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/Gruntfile.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/LICENSE -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/bower.json -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/print/paper.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/print/pdf.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/reveal.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/reveal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/reveal.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/beige.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/beige.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/black.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/blood.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/blood.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/Lato.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/Lato.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/LatoBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/LatoBold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/LatoBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/LatoBoldItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/LatoItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/LatoItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/Montserrat.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/NewsCycle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/NewsCycle.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/NewsCycleBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/NewsCycleBold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansBoldItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/Quicksand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/Quicksand.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/QuicksandBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/QuicksandBold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuBold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuBoldItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuLight.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/fonts/UbuntuLightItalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/league.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/league.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/moon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/moon.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/night.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/serif.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/simple.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/sky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/sky.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/solarized.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/beige.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/beige.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/black.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/black.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/blood.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/blood.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/league.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/moon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/moon.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/night.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/night.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/serif.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/serif.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/simple.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/sky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/sky.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/solarized.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/solarized.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/source/white.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/source/white.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/template/settings.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/template/theme.scss -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/css/theme/white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/css/theme/white.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/index.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/js/reveal.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/css/zenburn.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/league-gothic/LICENSE -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/LICENSE -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/font/source-sans-pro/source-sans-pro.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/js/classList.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/js/head.min.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/lib/js/html5shiv.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/package.json -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/markdown/example.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/markdown/example.md -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/markdown/marked.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/math/math.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/multiplex/client.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/multiplex/index.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/multiplex/master.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/notes-server/client.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/notes-server/index.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/notes/notes.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/notes/notes.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/search/search.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-markdown.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-pdf.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test-pdf.js -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test.html -------------------------------------------------------------------------------- /slides_files/reveal.js-3.2.0/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_files/reveal.js-3.2.0/test/test.js -------------------------------------------------------------------------------- /slides_presenter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/slides_presenter.css -------------------------------------------------------------------------------- /user2016-tutorial-shiny.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcheng5/user2016-tutorial-shiny/HEAD/user2016-tutorial-shiny.Rproj --------------------------------------------------------------------------------