Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Shiny Webinar - February 2021

kellobri
February 25, 2021
68

Shiny Webinar - February 2021

An RStudio Webinar on Shiny

kellobri

February 25, 2021
Tweet

Transcript

  1. February 2021 - Agenda • What’s new in Shiny 1.6

    ◦ Theming ◦ Caching ◦ Accessibility • Application Lifecycle Management ◦ Deployment paradigms ◦ Connecting with end users • Scaling & Performance ◦ Performance Workflow ◦ Monitoring Usage • Security Pattern Awareness ◦ Data Security ◦ Danger Areas
  2. Upgrade to Shiny 1.6 • Improved theming ◦ (and Bootstrap

    4) support • Improved caching • Improved accessibility ◦ UI elements include suitable ARIA attributes ◦ Language attribute (lang argument added to all *Page() functions) ◦ Alternate text for renderPlot() • Shiny Developer Mode
  3. Improved Theming: bslib Shiny Usage Pattern: For a quick sense

    of what bslib enables, call bs_theme_preview() Hosted themer demo app
  4. Improved Caching What is caching? In Shiny 1.6.0, reactives and

    render functions can cache their values, using the bindCache() function. In other words, the application will do the computation with a given set of inputs once, and then after that, if those inputs are seen again, it can simply retrieve the value saved in the cache, instead of having to compute it again. Mastering Shiny Chapter
  5. Improved Accessibility Static renderPlot() alt text Demo Example Webinar Link

    • UI elements include suitable ARIA attributes • Language attribute (lang argument added to all *Page() functions) • Alternate text for renderPlot()
  6. • Deployment is any push of code to an environment

    (test, prod) • Release is when that code (feature) is made available to users Application-based release patterns vs. Environment-based release patterns DevOps Learning: Decouple deployment from release
  7. Public APIs for Content Deployment Improvements to Redeployments - Retrieve

    GUIDs by content name and owner New patterns for release and deployment management - Bundle promotion now `/v1` - Blue-green option through `/vanity` swapping APP 1 APP 2 Vanity URL Path
  8. Collaborate -- Link to your source code on GitHub (or

    wherever) Add a custom ribbon link with the gitlink package
  9. Shiny Bookmarking URL Bookmarking by default, Shiny does not expose

    the current state of the app in its URL - Add a bookmarkButton() to the UI - Turn ui into a function - Add enableBookmarking = "url" to the shinyApp() call Instead of providing an explicit button, another option is to automatically update the URL in the browser. Server Bookmarking Storing richer state Issues with URL bookmarking - URL is going to get very long if you have a large number of inputs, and it’s not going to be able to capture an uploaded file. use enableBookmarking = "server", which saves the state to an .rds file on the server. This always generates a short, opaque, URL but requires additional storage on the server. (Not supported on shinyapps.io today)
  10. Packaging JavaScript code for Shiny Collaborative Annotation Hypothesis is an

    open source tool for “Collaborative Annotation” - Annotate the web, with anyone, anywhere - Free and open to use If you want to write custom JavaScript code to customize and extend your Shiny app, you’ll eventually need to figure out how to get Shiny to serve up your JavaScript.
  11. Code Quality and Performance The “Hour-Long-Talk” of Data Products -

    Rambling, Cluttered - Parts that work well - Parts that work not-so well Local Development EDA, Prototyping, Iteration The “Lightning-Talk” of Data Products - Targeted - Elegant - Streamlined - Optimized Production Development
  12. Turn a Prototype into a Production Application Performance Workflow 1.

    Use shinyloadtest to see if app is fast enough 2. If not, use profvis to see what’s making it slow 3. Optimize a. Move work out of shiny (very often) b. Make code faster (very often) c. Use caching (sometimes) d. Use async (occasionally) 4. Repeat!
  13. Scaling and Performance Tuning in RStudio Connect RStudio Connect is

    built to scale content. Publishers and administrators have access to runtime settings to help tune and scale their applications and APIs. The scheduling parameters tell RStudio Connect to act somewhere in between Scenario A and Scenario B, to maximize the trade-off between app responsiveness and memory consumption/load time. Max processes - Determines the maximum number of processes that will be created. Max connections per process - The maximum number of connections per process.
  14. • IT/Ops doesn’t want to interact with a GUI to

    manage scaling and performance tuning. • Applications silently refusing requested connections makes IT/Ops nervous!
  15. Instrumentation API RStudio Connect records different types of user activity

    for different types of content. 1. Shiny applications - records information about each visit and the length of that visit. 2. Static and rendered content - records information about each visit. github.com/sol-eng/connect-usage Code examples showing how to access the instrumentation data are in the User Activity recipes within the RStudio Connect API Cookbook.
  16. Gauge Widget for Tracking Concurrent Sessions Visualize session duration Use

    lubridate to calculate overlapping time intervals for counting session concurrency Custom Email!
  17. Suppress Email Send only if concurrent connections exceeds your warning

    buffer threshold Icing on the Cake: Update the runtime settings programmatically RStudio Connect Content Management API
  18. Data & Content Security Never include passwords in the source

    code of your app. Instead either put them in environment variables, or if you have many use the config package. Make sure that they are never included in your source code control by adding the appropriate files to .gitignore. Document how a new developer can get the appropriate credentials. Example: Shiny Data Level Security Levels: • Server • Application • Data
  19. Client-side Validation Shiny inputs use client-side validation, i.e. the checks

    for valid input are performed by JavaScript in the browser, not by R. This means it’s possible for a knowledgeable attacker to send values that you don’t expect.
  20. Dangerous App Patterns! The combination of parse() and eval() is

    a big warning sign for any Shiny app - Never source() an uploaded .R file - Never rmarkdown::render() an uploaded .Rmd Common functions that parse(), eval(), or both, in a way that you’re not aware of: - Model formulas - Glue labels - Variable transformation
  21. Glue Labels Example glue() evaluates anything inside of {}: If

    you want to allow a user to supply a glue string to generate a label, instead use glue::glue_safe() which only looks up variable names and doesn’t evaluate code: The glue package provides a powerful way to create strings from data
  22. Start by answering some questions… - What is a Shiny

    Application? - Who is the audience? - What is your service level agreement definition? (SLA) - What does your analytic architecture look like today? - What are your goals for evolving this architecture? - How will monitoring be handled? - Who is responsible for maintenance? Make work visible, Define shared goals, Build a checklist, Iterate Empathetic Communication is Challenging What does ‘Production’ mean? Keep it up: unplanned outages are rare or nonexistent Keep it safe: data, functionality, and code are all kept safe from unauthorized users Keep it correct: works as intended, provides the right answers Keep it snappy: fast response times, ability to predict needed capacity for expected traffic
  23. Challenges for the R User Organizational • Legitimizing R •

    Working with IT Technical • Experience • Education • Exposure Credibility Crisis Management Plan
  24. Shiny in Production Journey Code Profiling Version Control Testing Deployment/Release

    Access/Security Performance Tuning Shared Goal: Shorten the distance between development and production Shared Goal: The improvement of daily work Shared Goal: Reduce the risk of deploying a breaking change Testing! Automated Testing! Getting a Sandbox!