Importing and accessing large data files in Shiny

前端 未结 1 1882
野的像风
野的像风 2021-02-07 13:38

I have an app where I want to pull out values from a lookup table based on user inputs. The reference table is a statistical test, based on a calculation that\'d be too slow to

1条回答
  •  我在风中等你
    2021-02-07 14:22

    flaneuse, we are still working with a smaller set that you but we have been experimenting with:

    1. Use rds for our data

      As @jazzurro mentioned rds above, and you seem to know how to do this, but the syntax for others is below.

      Format .rds allows you to bring in a single R object so you can rename it if needs be.

      In your prep data code, for example:

      mystorefile <- file.path("/my/path","data.rds")
      # ... do data stuff
      
      # Save down (assuming mydata holds your data frame or table)
      saveRDS(mydata, file = mystorefile)
      

      In your shiny code:

      #  Load in my data
      x <- readRDS(mystorefile)
      

      Remember to copy your data .rds file into your app directory when you deploy. We use a data directory /myapp/data and then file.path for store file is changed to "./data" in our shiny code.

    2. global.R

      We have placed our readRDS calls to load in our data in this global file (instead of in server.R before shinyServer() call), so that is run once, and is available for all sessions, with the added bonus it can be seen by ui.R.

      See this scoping explanation for R Shiny.

    3. Slice and dice upfront

      The standard daily reports use the most recent data. So I make a small latest.dt in my global.R of a smaller subset of my data. So the landing page with the latest charts work with this smaller data set to get faster charts.

      The custom data tab which uses the full.dt then is on a separate tab. It is slower but at that stage the user is more patient, and is thinking of what dates and other parameters to choose.

      This subset idea may help you.

    Would be interested in what others (with more demanding data sets have tried)!

    0 讨论(0)
提交回复
热议问题