Can anyone please help how can you export an r shiny application as a pdf file? I am just providing the app from r website. How can I export it as a pdf? Thanks a lot!
library(shiny)
ui <- fluidPage(
“Hello, world!”
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
New contributor
Jimi Kardits is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.