2

I've built an app in shiny which generates data from user interaction. I would like to know the best ways of storing this data for later retrieval.

UPDATE 9/10/2018: This is explained in detail in RStudio webpage: https://shiny.rstudio.com/articles/persistent-data-storage.html

JPCampos
  • 103
  • 6

1 Answers1

2

Try saving the file on:

[1] An FTP server Download .RData and .csv files from FTP using RCurl (or any other method)

[2] Amazon s3

[3] Dropbox (rDrop package)

Community
  • 1
  • 1