+ - 0:00:00
Notes for current slide
Notes for next slide

R Shiny - Deployments

Workshop on Data Visualization in R

Lokesh Mano • 17-Apr-2023

NBIS, SciLifeLab

1/5

Deployment

  • R scripts

    • GitHub
    • R Package
    • Docker container
  • Webpage

    • Shinyapps.io
    • Shiny Server (Free)
    • Shiny Server Pro
2/5

Deployment

  • R scripts

    • GitHub
    • R Package
    • Docker container
  • Webpage

    • Shinyapps.io
    • Shiny Server (Free)
    • Shiny Server Pro
  • Automatically deploying to shinyapps.io

library(rsconnect)
rsconnect::setAccountInfo(name="username", token="HDFGT46YF7TDT6474G47", secret="hdgTDF5FStgdkpJ")
deployApp(appName="name")
2/5

Deployment

  • R scripts

    • GitHub
    • R Package
    • Docker container
  • Webpage

    • Shinyapps.io
    • Shiny Server (Free)
    • Shiny Server Pro
  • Automatically deploying to shinyapps.io

library(rsconnect)
rsconnect::setAccountInfo(name="username", token="HDFGT46YF7TDT6474G47", secret="hdgTDF5FStgdkpJ")
deployApp(appName="name")
2/5

Interactive documents

  • Shiny can run in RMarkdown documents. Set YAML runtime: shiny.
---
title: Interactive document
output: html_document
runtime: shiny
---
  • Shiny widgets can be included directly
```{r}
selectInput('n_breaks',label='Number of bins:',choices=c(10,20,35,50),selected=20)
```
  • Whole shiny apps can be included directly
```{r}
shinyApp(
ui=fluidPage(),
server=function(input,output) {}
)
```
  • Hosted shiny apps can be embedded using <iframe>
<iframe src="https://user.shinyapps.io/app"></iframe>

Demo: shiny-rmarkdown.R

3/5

Extensions

  • Naxstats: Repo collection all shiny extensions
  • shinythemes: Bootswatch themes for shiny
  • shinyurl: using URLs to recreate state of an app
  • shinypod: Reusable modules
  • shinyjs: custom javascript functionality
  • shinyWidgets: Bootstrap 3 custom widgets
  • shinyBS: Bootstrap 3 widgets
4/5

Thank you. Questions?

Slide courtesy: Roy Francis (NBIS, RaukR2021)

R version 4.1.3 (2022-03-10)

Platform: x86_64-pc-linux-gnu (64-bit)

OS: Ubuntu 22.04.2 LTS



Built on : 17-Apr-2023 at 14:28:37

2023SciLifeLabNBIS

5/5

Deployment

  • R scripts

    • GitHub
    • R Package
    • Docker container
  • Webpage

    • Shinyapps.io
    • Shiny Server (Free)
    • Shiny Server Pro
2/5
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
Esc Back to slideshow