I'm building an RShiny app where a user modifies a dataset step-by-step. At any point, they can download their dataset as an .xlsx file, and an RData file containing all the parameterization of the tool up to that point. Right now, they have to click on separate buttons and specify separate paths to save the .xlsx file and the RData files.
Ideally, I would like to have both files stored in the same place at the same time, from a single button click. Rather than writing a separate RData file, I was thinking I could write the contents of the RData file to a particular cell in the .xlsx document, and read this serialized data back the next time the user loads the spreadsheet. Is this possible?
Embedding a binary RData in an Excel cell sounds...ummm...yeah, I wouldn't.
Possible Solutions:
list(params=parameters, data=dataframe)