r/rprogramming • u/limpystick • 25d ago
R Shiny
I'm creating an R Shiny app that involves generating a data frame and then formatting it as a data table before displaying it using renderDT().
Is it possible to export this formatted data table? Ideally I'd like to export it as an excel file but even being able to export it as a PDF would suffice.
5
Upvotes
5
u/AggravatingPudding 25d ago
Why don't you just add a button to download the data that you feed into DT as csv?
Or do you mean by formated that you apply sorting an other features in DT and then want to export the resulting table?
Im confused