├── .gitignore ├── README.md ├── chapter02 ├── 01-basic │ ├── server.R │ └── ui.R ├── 02-single-file │ └── app.R ├── 03-reactive-before │ ├── server.R │ └── ui.R ├── 04-reactive-after │ ├── server.R │ └── ui.R ├── 05-isolate │ ├── server.R │ └── ui.R ├── 06-fluidRow │ ├── server.R │ └── ui.R ├── 07-ui-widget │ ├── server.R │ └── ui.R ├── 08-add-image │ ├── server.R │ ├── ui.R │ └── www │ │ └── sample.jpg ├── 09-add-CSS │ ├── server.R │ ├── ui.R │ └── www │ │ ├── sample.jpg │ │ └── styles.css └── 10-add-JavaScript │ ├── server.R │ ├── ui.R │ └── www │ ├── color_change.js │ ├── sample.jpg │ └── styles.css ├── chapter03 ├── 01-navbar │ ├── server.R │ └── ui.R ├── 02-navbar-option │ ├── server.R │ └── ui.R ├── 03-navbar-position │ ├── server.R │ └── ui.R ├── 04-app-version1.0 │ ├── server.R │ └── ui.R ├── 05-html │ ├── server.R │ └── ui.R ├── 06-tabsetPanel │ ├── server.R │ └── ui.R ├── 07-app-version1.1 │ ├── server.R │ └── ui.R ├── 08-themeSelector │ ├── server.R │ └── ui.R ├── 09-cerulean │ ├── server.R │ └── ui.R ├── 10-selectInput │ ├── server.R │ └── ui.R ├── 11-app-version2.0 │ ├── server.R │ └── ui.R ├── 12-app-version2.1 │ ├── server.R │ └── ui.R ├── 13-numericInput │ ├── server.R │ └── ui.R ├── 14-updateSelectInput │ ├── server.R │ └── ui.R ├── 15-app-version2.2 │ ├── server.R │ └── ui.R ├── 16-actionButton │ ├── server.R │ └── ui.R ├── 17-actionButton2 │ ├── server.R │ └── ui.R ├── 18-app-version2.3 │ ├── server.R │ └── ui.R ├── 19-scatter-plot │ ├── server.R │ └── ui.R ├── 20-dblclickOpts │ ├── server.R │ └── ui.R ├── 21-brushOpts │ ├── server.R │ └── ui.R ├── 22-app-version2.4 │ ├── server.R │ └── ui.R ├── 23-googleVis │ ├── server.R │ └── ui.R ├── 24-rcharts │ ├── server.R │ └── ui.R ├── 25-selection │ ├── server.R │ └── ui.R ├── 26-app-versioin3.0 │ ├── server.R │ └── ui.R ├── 27-Shiny-Module-Before │ ├── server.R │ └── ui.R ├── 28-Shiny-Module-After │ ├── global.R │ ├── server.R │ └── ui.R ├── 29-app-version3.1 │ ├── global.R │ ├── server.R │ └── ui.R ├── 30-fileInput │ ├── server.R │ └── ui.R └── 31-download │ ├── server.R │ └── ui.R ├── chapter04 ├── 01-app-version1.0 │ ├── server.R │ └── ui.R ├── 02-shinydashboad │ ├── server.R │ └── ui.R ├── 03-app-version1.1 │ ├── server.R │ └── ui.R ├── 04-app-version2.0 │ ├── global.R │ ├── server.R │ └── ui.R ├── 05-app-version3.0 │ ├── data │ │ ├── attribute.csv │ │ ├── sample.dbf │ │ ├── sample.shp │ │ └── sample.shx │ ├── global.R │ ├── server.R │ └── ui.R ├── 06-absolutePanel │ ├── server.R │ └── ui.R ├── 07-app-version3.1 │ ├── data │ │ ├── attribute.csv │ │ ├── sample.dbf │ │ ├── sample.shp │ │ └── sample.shx │ ├── global.R │ ├── server.R │ ├── ui.R │ └── www │ │ └── style.css └── 08-app-version3.2 │ ├── data │ ├── attribute.csv │ ├── sample.dbf │ ├── sample.shp │ └── sample.shx │ ├── global.R │ ├── server.R │ ├── ui.R │ └── www │ └── style.css ├── chapter05 ├── 01-app-versin1.0 │ ├── global.R │ ├── server.R │ └── ui.R ├── 02-app-versin2.0 │ ├── global.R │ ├── server.R │ └── ui.R ├── 03-app-versin2.1 │ ├── global.R │ ├── server.R │ └── ui.R ├── 04-ggplot │ └── app.R ├── 05-app-versin3.0 │ ├── global.R │ ├── server.R │ └── ui.R ├── 06-ReporteRs │ ├── server.R │ └── ui.R └── 07-app-versin4.0 │ ├── global.R │ ├── server.R │ └── ui.R └── chapter07 ├── 01-processing ├── shinycssloaders │ ├── server.R │ └── ui.R └── withprogress │ ├── server.R │ └── ui.R ├── 02-debug └── app.R ├── 03-googlesheet ├── googlesheet-local │ ├── server.R │ └── ui.R └── googlesheet │ ├── server.R │ └── ui.R ├── 04-DT ├── 1-basic │ └── app.R ├── 2-lengthMenu │ └── app.R ├── 3-scroll │ └── app.R └── 4-download │ └── app.R ├── 05-drag_and_drop ├── sample_data.csv ├── server.R ├── ui.R └── www │ ├── drag.js │ └── style.css ├── 06-withmathjax └── app.R ├── 07-RMarkdown ├── basic.Rmd └── presentation.Rmd ├── 08-shinytest ├── install.R └── sample │ ├── server.R │ ├── tests │ ├── mytest-expected │ │ ├── 001.json │ │ └── 001.png │ └── mytest.R │ └── ui.R ├── 09-pool ├── global.R ├── server.R └── ui.R ├── 10-reactiveTimer ├── server.R └── ui.R └── 11-Bookmark ├── global.R ├── server.R └── ui.R /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/README.md -------------------------------------------------------------------------------- /chapter02/01-basic/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/01-basic/server.R -------------------------------------------------------------------------------- /chapter02/01-basic/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/01-basic/ui.R -------------------------------------------------------------------------------- /chapter02/02-single-file/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/02-single-file/app.R -------------------------------------------------------------------------------- /chapter02/03-reactive-before/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/03-reactive-before/server.R -------------------------------------------------------------------------------- /chapter02/03-reactive-before/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/03-reactive-before/ui.R -------------------------------------------------------------------------------- /chapter02/04-reactive-after/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/04-reactive-after/server.R -------------------------------------------------------------------------------- /chapter02/04-reactive-after/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/04-reactive-after/ui.R -------------------------------------------------------------------------------- /chapter02/05-isolate/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/05-isolate/server.R -------------------------------------------------------------------------------- /chapter02/05-isolate/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/05-isolate/ui.R -------------------------------------------------------------------------------- /chapter02/06-fluidRow/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/06-fluidRow/server.R -------------------------------------------------------------------------------- /chapter02/06-fluidRow/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/06-fluidRow/ui.R -------------------------------------------------------------------------------- /chapter02/07-ui-widget/server.R: -------------------------------------------------------------------------------- 1 | shinyServer(function(input, output) {}) -------------------------------------------------------------------------------- /chapter02/07-ui-widget/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/07-ui-widget/ui.R -------------------------------------------------------------------------------- /chapter02/08-add-image/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/08-add-image/server.R -------------------------------------------------------------------------------- /chapter02/08-add-image/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/08-add-image/ui.R -------------------------------------------------------------------------------- /chapter02/08-add-image/www/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/08-add-image/www/sample.jpg -------------------------------------------------------------------------------- /chapter02/09-add-CSS/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/09-add-CSS/server.R -------------------------------------------------------------------------------- /chapter02/09-add-CSS/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/09-add-CSS/ui.R -------------------------------------------------------------------------------- /chapter02/09-add-CSS/www/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/09-add-CSS/www/sample.jpg -------------------------------------------------------------------------------- /chapter02/09-add-CSS/www/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color:#b0c4de; 3 | } 4 | -------------------------------------------------------------------------------- /chapter02/10-add-JavaScript/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/10-add-JavaScript/server.R -------------------------------------------------------------------------------- /chapter02/10-add-JavaScript/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/10-add-JavaScript/ui.R -------------------------------------------------------------------------------- /chapter02/10-add-JavaScript/www/color_change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/10-add-JavaScript/www/color_change.js -------------------------------------------------------------------------------- /chapter02/10-add-JavaScript/www/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter02/10-add-JavaScript/www/sample.jpg -------------------------------------------------------------------------------- /chapter02/10-add-JavaScript/www/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color:#b0c4de; 3 | } 4 | -------------------------------------------------------------------------------- /chapter03/01-navbar/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/01-navbar/server.R -------------------------------------------------------------------------------- /chapter03/01-navbar/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/01-navbar/ui.R -------------------------------------------------------------------------------- /chapter03/02-navbar-option/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/02-navbar-option/server.R -------------------------------------------------------------------------------- /chapter03/02-navbar-option/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/02-navbar-option/ui.R -------------------------------------------------------------------------------- /chapter03/03-navbar-position/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/03-navbar-position/server.R -------------------------------------------------------------------------------- /chapter03/03-navbar-position/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/03-navbar-position/ui.R -------------------------------------------------------------------------------- /chapter03/04-app-version1.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/04-app-version1.0/server.R -------------------------------------------------------------------------------- /chapter03/04-app-version1.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/04-app-version1.0/ui.R -------------------------------------------------------------------------------- /chapter03/05-html/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/05-html/server.R -------------------------------------------------------------------------------- /chapter03/05-html/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/05-html/ui.R -------------------------------------------------------------------------------- /chapter03/06-tabsetPanel/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/06-tabsetPanel/server.R -------------------------------------------------------------------------------- /chapter03/06-tabsetPanel/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/06-tabsetPanel/ui.R -------------------------------------------------------------------------------- /chapter03/07-app-version1.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/07-app-version1.1/server.R -------------------------------------------------------------------------------- /chapter03/07-app-version1.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/07-app-version1.1/ui.R -------------------------------------------------------------------------------- /chapter03/08-themeSelector/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/08-themeSelector/server.R -------------------------------------------------------------------------------- /chapter03/08-themeSelector/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/08-themeSelector/ui.R -------------------------------------------------------------------------------- /chapter03/09-cerulean/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/09-cerulean/server.R -------------------------------------------------------------------------------- /chapter03/09-cerulean/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/09-cerulean/ui.R -------------------------------------------------------------------------------- /chapter03/10-selectInput/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/10-selectInput/server.R -------------------------------------------------------------------------------- /chapter03/10-selectInput/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/10-selectInput/ui.R -------------------------------------------------------------------------------- /chapter03/11-app-version2.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/11-app-version2.0/server.R -------------------------------------------------------------------------------- /chapter03/11-app-version2.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/11-app-version2.0/ui.R -------------------------------------------------------------------------------- /chapter03/12-app-version2.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/12-app-version2.1/server.R -------------------------------------------------------------------------------- /chapter03/12-app-version2.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/12-app-version2.1/ui.R -------------------------------------------------------------------------------- /chapter03/13-numericInput/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/13-numericInput/server.R -------------------------------------------------------------------------------- /chapter03/13-numericInput/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/13-numericInput/ui.R -------------------------------------------------------------------------------- /chapter03/14-updateSelectInput/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/14-updateSelectInput/server.R -------------------------------------------------------------------------------- /chapter03/14-updateSelectInput/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/14-updateSelectInput/ui.R -------------------------------------------------------------------------------- /chapter03/15-app-version2.2/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/15-app-version2.2/server.R -------------------------------------------------------------------------------- /chapter03/15-app-version2.2/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/15-app-version2.2/ui.R -------------------------------------------------------------------------------- /chapter03/16-actionButton/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/16-actionButton/server.R -------------------------------------------------------------------------------- /chapter03/16-actionButton/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/16-actionButton/ui.R -------------------------------------------------------------------------------- /chapter03/17-actionButton2/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/17-actionButton2/server.R -------------------------------------------------------------------------------- /chapter03/17-actionButton2/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/17-actionButton2/ui.R -------------------------------------------------------------------------------- /chapter03/18-app-version2.3/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/18-app-version2.3/server.R -------------------------------------------------------------------------------- /chapter03/18-app-version2.3/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/18-app-version2.3/ui.R -------------------------------------------------------------------------------- /chapter03/19-scatter-plot/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/19-scatter-plot/server.R -------------------------------------------------------------------------------- /chapter03/19-scatter-plot/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/19-scatter-plot/ui.R -------------------------------------------------------------------------------- /chapter03/20-dblclickOpts/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/20-dblclickOpts/server.R -------------------------------------------------------------------------------- /chapter03/20-dblclickOpts/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/20-dblclickOpts/ui.R -------------------------------------------------------------------------------- /chapter03/21-brushOpts/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/21-brushOpts/server.R -------------------------------------------------------------------------------- /chapter03/21-brushOpts/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/21-brushOpts/ui.R -------------------------------------------------------------------------------- /chapter03/22-app-version2.4/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/22-app-version2.4/server.R -------------------------------------------------------------------------------- /chapter03/22-app-version2.4/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/22-app-version2.4/ui.R -------------------------------------------------------------------------------- /chapter03/23-googleVis/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/23-googleVis/server.R -------------------------------------------------------------------------------- /chapter03/23-googleVis/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/23-googleVis/ui.R -------------------------------------------------------------------------------- /chapter03/24-rcharts/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/24-rcharts/server.R -------------------------------------------------------------------------------- /chapter03/24-rcharts/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/24-rcharts/ui.R -------------------------------------------------------------------------------- /chapter03/25-selection/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/25-selection/server.R -------------------------------------------------------------------------------- /chapter03/25-selection/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/25-selection/ui.R -------------------------------------------------------------------------------- /chapter03/26-app-versioin3.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/26-app-versioin3.0/server.R -------------------------------------------------------------------------------- /chapter03/26-app-versioin3.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/26-app-versioin3.0/ui.R -------------------------------------------------------------------------------- /chapter03/27-Shiny-Module-Before/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/27-Shiny-Module-Before/server.R -------------------------------------------------------------------------------- /chapter03/27-Shiny-Module-Before/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/27-Shiny-Module-Before/ui.R -------------------------------------------------------------------------------- /chapter03/28-Shiny-Module-After/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/28-Shiny-Module-After/global.R -------------------------------------------------------------------------------- /chapter03/28-Shiny-Module-After/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/28-Shiny-Module-After/server.R -------------------------------------------------------------------------------- /chapter03/28-Shiny-Module-After/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/28-Shiny-Module-After/ui.R -------------------------------------------------------------------------------- /chapter03/29-app-version3.1/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/29-app-version3.1/global.R -------------------------------------------------------------------------------- /chapter03/29-app-version3.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/29-app-version3.1/server.R -------------------------------------------------------------------------------- /chapter03/29-app-version3.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/29-app-version3.1/ui.R -------------------------------------------------------------------------------- /chapter03/30-fileInput/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/30-fileInput/server.R -------------------------------------------------------------------------------- /chapter03/30-fileInput/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/30-fileInput/ui.R -------------------------------------------------------------------------------- /chapter03/31-download/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/31-download/server.R -------------------------------------------------------------------------------- /chapter03/31-download/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter03/31-download/ui.R -------------------------------------------------------------------------------- /chapter04/01-app-version1.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/01-app-version1.0/server.R -------------------------------------------------------------------------------- /chapter04/01-app-version1.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/01-app-version1.0/ui.R -------------------------------------------------------------------------------- /chapter04/02-shinydashboad/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/02-shinydashboad/server.R -------------------------------------------------------------------------------- /chapter04/02-shinydashboad/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/02-shinydashboad/ui.R -------------------------------------------------------------------------------- /chapter04/03-app-version1.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/03-app-version1.1/server.R -------------------------------------------------------------------------------- /chapter04/03-app-version1.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/03-app-version1.1/ui.R -------------------------------------------------------------------------------- /chapter04/04-app-version2.0/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/04-app-version2.0/global.R -------------------------------------------------------------------------------- /chapter04/04-app-version2.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/04-app-version2.0/server.R -------------------------------------------------------------------------------- /chapter04/04-app-version2.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/04-app-version2.0/ui.R -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/data/attribute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/data/attribute.csv -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/data/sample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/data/sample.dbf -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/data/sample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/data/sample.shp -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/data/sample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/data/sample.shx -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/global.R -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/server.R -------------------------------------------------------------------------------- /chapter04/05-app-version3.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/05-app-version3.0/ui.R -------------------------------------------------------------------------------- /chapter04/06-absolutePanel/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/06-absolutePanel/server.R -------------------------------------------------------------------------------- /chapter04/06-absolutePanel/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/06-absolutePanel/ui.R -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/data/attribute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/data/attribute.csv -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/data/sample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/data/sample.dbf -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/data/sample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/data/sample.shp -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/data/sample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/data/sample.shx -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/global.R -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/server.R -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/ui.R -------------------------------------------------------------------------------- /chapter04/07-app-version3.1/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/07-app-version3.1/www/style.css -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/data/attribute.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/data/attribute.csv -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/data/sample.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/data/sample.dbf -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/data/sample.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/data/sample.shp -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/data/sample.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/data/sample.shx -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/global.R -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/server.R -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/ui.R -------------------------------------------------------------------------------- /chapter04/08-app-version3.2/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter04/08-app-version3.2/www/style.css -------------------------------------------------------------------------------- /chapter05/01-app-versin1.0/global.R: -------------------------------------------------------------------------------- 1 | library(shiny) -------------------------------------------------------------------------------- /chapter05/01-app-versin1.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/01-app-versin1.0/server.R -------------------------------------------------------------------------------- /chapter05/01-app-versin1.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/01-app-versin1.0/ui.R -------------------------------------------------------------------------------- /chapter05/02-app-versin2.0/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/02-app-versin2.0/global.R -------------------------------------------------------------------------------- /chapter05/02-app-versin2.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/02-app-versin2.0/server.R -------------------------------------------------------------------------------- /chapter05/02-app-versin2.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/02-app-versin2.0/ui.R -------------------------------------------------------------------------------- /chapter05/03-app-versin2.1/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/03-app-versin2.1/global.R -------------------------------------------------------------------------------- /chapter05/03-app-versin2.1/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/03-app-versin2.1/server.R -------------------------------------------------------------------------------- /chapter05/03-app-versin2.1/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/03-app-versin2.1/ui.R -------------------------------------------------------------------------------- /chapter05/04-ggplot/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/04-ggplot/app.R -------------------------------------------------------------------------------- /chapter05/05-app-versin3.0/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/05-app-versin3.0/global.R -------------------------------------------------------------------------------- /chapter05/05-app-versin3.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/05-app-versin3.0/server.R -------------------------------------------------------------------------------- /chapter05/05-app-versin3.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/05-app-versin3.0/ui.R -------------------------------------------------------------------------------- /chapter05/06-ReporteRs/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/06-ReporteRs/server.R -------------------------------------------------------------------------------- /chapter05/06-ReporteRs/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/06-ReporteRs/ui.R -------------------------------------------------------------------------------- /chapter05/07-app-versin4.0/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/07-app-versin4.0/global.R -------------------------------------------------------------------------------- /chapter05/07-app-versin4.0/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/07-app-versin4.0/server.R -------------------------------------------------------------------------------- /chapter05/07-app-versin4.0/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter05/07-app-versin4.0/ui.R -------------------------------------------------------------------------------- /chapter07/01-processing/shinycssloaders/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/01-processing/shinycssloaders/server.R -------------------------------------------------------------------------------- /chapter07/01-processing/shinycssloaders/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/01-processing/shinycssloaders/ui.R -------------------------------------------------------------------------------- /chapter07/01-processing/withprogress/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/01-processing/withprogress/server.R -------------------------------------------------------------------------------- /chapter07/01-processing/withprogress/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/01-processing/withprogress/ui.R -------------------------------------------------------------------------------- /chapter07/02-debug/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/02-debug/app.R -------------------------------------------------------------------------------- /chapter07/03-googlesheet/googlesheet-local/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/03-googlesheet/googlesheet-local/server.R -------------------------------------------------------------------------------- /chapter07/03-googlesheet/googlesheet-local/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/03-googlesheet/googlesheet-local/ui.R -------------------------------------------------------------------------------- /chapter07/03-googlesheet/googlesheet/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/03-googlesheet/googlesheet/server.R -------------------------------------------------------------------------------- /chapter07/03-googlesheet/googlesheet/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/03-googlesheet/googlesheet/ui.R -------------------------------------------------------------------------------- /chapter07/04-DT/1-basic/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/04-DT/1-basic/app.R -------------------------------------------------------------------------------- /chapter07/04-DT/2-lengthMenu/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/04-DT/2-lengthMenu/app.R -------------------------------------------------------------------------------- /chapter07/04-DT/3-scroll/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/04-DT/3-scroll/app.R -------------------------------------------------------------------------------- /chapter07/04-DT/4-download/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/04-DT/4-download/app.R -------------------------------------------------------------------------------- /chapter07/05-drag_and_drop/sample_data.csv: -------------------------------------------------------------------------------- 1 | A,B,C 33,35,46 46,41,2 3,23,87 -------------------------------------------------------------------------------- /chapter07/05-drag_and_drop/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/05-drag_and_drop/server.R -------------------------------------------------------------------------------- /chapter07/05-drag_and_drop/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/05-drag_and_drop/ui.R -------------------------------------------------------------------------------- /chapter07/05-drag_and_drop/www/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/05-drag_and_drop/www/drag.js -------------------------------------------------------------------------------- /chapter07/05-drag_and_drop/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/05-drag_and_drop/www/style.css -------------------------------------------------------------------------------- /chapter07/06-withmathjax/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/06-withmathjax/app.R -------------------------------------------------------------------------------- /chapter07/07-RMarkdown/basic.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/07-RMarkdown/basic.Rmd -------------------------------------------------------------------------------- /chapter07/07-RMarkdown/presentation.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/07-RMarkdown/presentation.Rmd -------------------------------------------------------------------------------- /chapter07/08-shinytest/install.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/install.R -------------------------------------------------------------------------------- /chapter07/08-shinytest/sample/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/sample/server.R -------------------------------------------------------------------------------- /chapter07/08-shinytest/sample/tests/mytest-expected/001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/sample/tests/mytest-expected/001.json -------------------------------------------------------------------------------- /chapter07/08-shinytest/sample/tests/mytest-expected/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/sample/tests/mytest-expected/001.png -------------------------------------------------------------------------------- /chapter07/08-shinytest/sample/tests/mytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/sample/tests/mytest.R -------------------------------------------------------------------------------- /chapter07/08-shinytest/sample/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/08-shinytest/sample/ui.R -------------------------------------------------------------------------------- /chapter07/09-pool/global.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/09-pool/global.R -------------------------------------------------------------------------------- /chapter07/09-pool/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/09-pool/server.R -------------------------------------------------------------------------------- /chapter07/09-pool/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/09-pool/ui.R -------------------------------------------------------------------------------- /chapter07/10-reactiveTimer/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/10-reactiveTimer/server.R -------------------------------------------------------------------------------- /chapter07/10-reactiveTimer/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/10-reactiveTimer/ui.R -------------------------------------------------------------------------------- /chapter07/11-Bookmark/global.R: -------------------------------------------------------------------------------- 1 | library(shiny) 2 | enableBookmarking(store = "url") 3 | -------------------------------------------------------------------------------- /chapter07/11-Bookmark/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/11-Bookmark/server.R -------------------------------------------------------------------------------- /chapter07/11-Bookmark/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Np-Ur/ShinyBook/HEAD/chapter07/11-Bookmark/ui.R --------------------------------------------------------------------------------