├── .gitignore ├── 00-welcome ├── 00-welcome.key ├── 00-welcome.pdf └── packages.R ├── 01-md-compose-prose ├── 01-md-compose-prose.key ├── 01-md-compose-prose.pdf ├── analyze-share-repro-soln.Rmd ├── analyze-share-repro.Rmd └── analyze-share-repro.html ├── 02-R-in-Markdown ├── 02-R-in-Markdown.key ├── 02-R-in-Markdown.pdf └── Chunk_basics.Rmd ├── 03-up-your-rmd-game ├── 03-up-your-rmd-game.key ├── 03-up-your-rmd-game.pdf ├── 03B-interactivity-on-the-cheap.key ├── 03B-interactivity-on-the-cheap.pdf ├── Dashboard-soln.Rmd ├── Dashboard.Rmd ├── Economist.Rmd ├── Storyboard.Rmd ├── bibliography.bib ├── images │ └── 20180120_FNC577_0.png └── kaplan-consulting.docx ├── 04-shiny-getting-started ├── 04-shiny-getting-started.key ├── 04-shiny-getting-started.pdf └── apps │ ├── goog-index │ ├── DESCRIPTION │ ├── README.md │ ├── app.R │ └── data │ │ ├── trend_data.csv │ │ └── trend_description.csv │ └── movies │ ├── movies.Rdata │ ├── movies_01.R │ ├── movies_02.R │ ├── movies_03.R │ ├── movies_04.R │ └── movies_05.R ├── 05-understand-reactivity ├── 05-understand-reactivity.key ├── 05-understand-reactivity.pdf └── apps │ └── movies │ ├── movies.Rdata │ ├── movies_05.R │ ├── movies_06.R │ ├── movies_07.R │ ├── movies_08.R │ ├── movies_09.R │ ├── movies_10.R │ └── movies_11.R ├── 06-design-ui ├── 06-design-ui.key ├── 06-design-ui.pdf └── apps │ ├── big_mac_index │ └── prototype.Rmd │ └── movies │ ├── movies.Rdata │ ├── movies_11-soln.R │ └── movies_11.R ├── 07-dashboards ├── 07-dashboards.key ├── 07-dashboards.pdf └── apps │ └── dashboard │ ├── flexdashboard_01.Rmd │ ├── flexdashboard_01.html │ ├── flexdashboard_02.Rmd │ └── movies.Rdata ├── 08-more-react ├── 08-more-react.key ├── 08-more-react.pdf ├── movies.Rdata ├── movies_11.R ├── movies_12.R ├── movies_13.R └── movies_14.R ├── 09-wrap-up ├── 09-wrap-up.key └── 09-wrap-up.pdf ├── README.md ├── cond └── app.R ├── data ├── AAPL.csv └── big-mac-index.csv └── shinymark.Rproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/.gitignore -------------------------------------------------------------------------------- /00-welcome/00-welcome.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/00-welcome/00-welcome.key -------------------------------------------------------------------------------- /00-welcome/00-welcome.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/00-welcome/00-welcome.pdf -------------------------------------------------------------------------------- /00-welcome/packages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/00-welcome/packages.R -------------------------------------------------------------------------------- /01-md-compose-prose/01-md-compose-prose.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/01-md-compose-prose/01-md-compose-prose.key -------------------------------------------------------------------------------- /01-md-compose-prose/01-md-compose-prose.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/01-md-compose-prose/01-md-compose-prose.pdf -------------------------------------------------------------------------------- /01-md-compose-prose/analyze-share-repro-soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/01-md-compose-prose/analyze-share-repro-soln.Rmd -------------------------------------------------------------------------------- /01-md-compose-prose/analyze-share-repro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/01-md-compose-prose/analyze-share-repro.Rmd -------------------------------------------------------------------------------- /01-md-compose-prose/analyze-share-repro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/01-md-compose-prose/analyze-share-repro.html -------------------------------------------------------------------------------- /02-R-in-Markdown/02-R-in-Markdown.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/02-R-in-Markdown/02-R-in-Markdown.key -------------------------------------------------------------------------------- /02-R-in-Markdown/02-R-in-Markdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/02-R-in-Markdown/02-R-in-Markdown.pdf -------------------------------------------------------------------------------- /02-R-in-Markdown/Chunk_basics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/02-R-in-Markdown/Chunk_basics.Rmd -------------------------------------------------------------------------------- /03-up-your-rmd-game/03-up-your-rmd-game.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/03-up-your-rmd-game.key -------------------------------------------------------------------------------- /03-up-your-rmd-game/03-up-your-rmd-game.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/03-up-your-rmd-game.pdf -------------------------------------------------------------------------------- /03-up-your-rmd-game/03B-interactivity-on-the-cheap.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/03B-interactivity-on-the-cheap.key -------------------------------------------------------------------------------- /03-up-your-rmd-game/03B-interactivity-on-the-cheap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/03B-interactivity-on-the-cheap.pdf -------------------------------------------------------------------------------- /03-up-your-rmd-game/Dashboard-soln.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/Dashboard-soln.Rmd -------------------------------------------------------------------------------- /03-up-your-rmd-game/Dashboard.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/Dashboard.Rmd -------------------------------------------------------------------------------- /03-up-your-rmd-game/Economist.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/Economist.Rmd -------------------------------------------------------------------------------- /03-up-your-rmd-game/Storyboard.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/Storyboard.Rmd -------------------------------------------------------------------------------- /03-up-your-rmd-game/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/bibliography.bib -------------------------------------------------------------------------------- /03-up-your-rmd-game/images/20180120_FNC577_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/images/20180120_FNC577_0.png -------------------------------------------------------------------------------- /03-up-your-rmd-game/kaplan-consulting.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/03-up-your-rmd-game/kaplan-consulting.docx -------------------------------------------------------------------------------- /04-shiny-getting-started/04-shiny-getting-started.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/04-shiny-getting-started.key -------------------------------------------------------------------------------- /04-shiny-getting-started/04-shiny-getting-started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/04-shiny-getting-started.pdf -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/goog-index/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/goog-index/DESCRIPTION -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/goog-index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/goog-index/README.md -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/goog-index/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/goog-index/app.R -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/goog-index/data/trend_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/goog-index/data/trend_data.csv -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/goog-index/data/trend_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/goog-index/data/trend_description.csv -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies.Rdata -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies_01.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies_01.R -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies_02.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies_02.R -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies_03.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies_03.R -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies_04.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies_04.R -------------------------------------------------------------------------------- /04-shiny-getting-started/apps/movies/movies_05.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/04-shiny-getting-started/apps/movies/movies_05.R -------------------------------------------------------------------------------- /05-understand-reactivity/05-understand-reactivity.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/05-understand-reactivity.key -------------------------------------------------------------------------------- /05-understand-reactivity/05-understand-reactivity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/05-understand-reactivity.pdf -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies.Rdata -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_05.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_05.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_06.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_06.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_07.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_07.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_08.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_08.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_09.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_09.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_10.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_10.R -------------------------------------------------------------------------------- /05-understand-reactivity/apps/movies/movies_11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/05-understand-reactivity/apps/movies/movies_11.R -------------------------------------------------------------------------------- /06-design-ui/06-design-ui.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/06-design-ui.key -------------------------------------------------------------------------------- /06-design-ui/06-design-ui.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/06-design-ui.pdf -------------------------------------------------------------------------------- /06-design-ui/apps/big_mac_index/prototype.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/apps/big_mac_index/prototype.Rmd -------------------------------------------------------------------------------- /06-design-ui/apps/movies/movies.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/apps/movies/movies.Rdata -------------------------------------------------------------------------------- /06-design-ui/apps/movies/movies_11-soln.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/apps/movies/movies_11-soln.R -------------------------------------------------------------------------------- /06-design-ui/apps/movies/movies_11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/06-design-ui/apps/movies/movies_11.R -------------------------------------------------------------------------------- /07-dashboards/07-dashboards.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/07-dashboards.key -------------------------------------------------------------------------------- /07-dashboards/07-dashboards.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/07-dashboards.pdf -------------------------------------------------------------------------------- /07-dashboards/apps/dashboard/flexdashboard_01.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/apps/dashboard/flexdashboard_01.Rmd -------------------------------------------------------------------------------- /07-dashboards/apps/dashboard/flexdashboard_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/apps/dashboard/flexdashboard_01.html -------------------------------------------------------------------------------- /07-dashboards/apps/dashboard/flexdashboard_02.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/apps/dashboard/flexdashboard_02.Rmd -------------------------------------------------------------------------------- /07-dashboards/apps/dashboard/movies.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/07-dashboards/apps/dashboard/movies.Rdata -------------------------------------------------------------------------------- /08-more-react/08-more-react.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/08-more-react.key -------------------------------------------------------------------------------- /08-more-react/08-more-react.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/08-more-react.pdf -------------------------------------------------------------------------------- /08-more-react/movies.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/movies.Rdata -------------------------------------------------------------------------------- /08-more-react/movies_11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/movies_11.R -------------------------------------------------------------------------------- /08-more-react/movies_12.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/movies_12.R -------------------------------------------------------------------------------- /08-more-react/movies_13.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/movies_13.R -------------------------------------------------------------------------------- /08-more-react/movies_14.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/08-more-react/movies_14.R -------------------------------------------------------------------------------- /09-wrap-up/09-wrap-up.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/09-wrap-up/09-wrap-up.key -------------------------------------------------------------------------------- /09-wrap-up/09-wrap-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/09-wrap-up/09-wrap-up.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/README.md -------------------------------------------------------------------------------- /cond/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/cond/app.R -------------------------------------------------------------------------------- /data/AAPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/data/AAPL.csv -------------------------------------------------------------------------------- /data/big-mac-index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/data/big-mac-index.csv -------------------------------------------------------------------------------- /shinymark.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dtkaplan/shinymark/HEAD/shinymark.Rproj --------------------------------------------------------------------------------