Displaying 3 results from an estimated 3 matches for "downloadhandl".
Did you mean:
downloadhandler
2016 Jul 06
4
Función para imprimir contenido en una app interactiva de Shiny
Buenos días:
En algunas aplicaciones para visualización de datos con Shiny, los usuarios me piden la posibilidad de imprimir (sea en pdf o en una impresora) desde la propia app. Es decir, necesitaría añadir un icono para que al pulsarlo se pudiese imprimir el gráfico o la tabla o el dashboard que el usuario está viendo o el contenido de toda la app o el contenido que el usuario seleccione. No sé
2019 Oct 07
0
Changing HTML Error code message
...oken = token)
filePutReport()
})
# Show Html Pages
output$viewReport <- renderUI({
tags$iframe(seamless = "seamless", width = "1400", height = "1000",
src = filePutReport2()
)
})
###
output$downFile <- downloadHandler(
# generate bins based on input$bins from ui.R
filename = function() {
paste0(filePutReport() )
},
content = function(file){
file.copy(from = paste0("./www/", filePutReport2() ), to = file,
overwrite = TRUE)
}
)
})
shinyApp(ui = ui, server = serve...
2008 Mar 05
1
New data source - now how do we build an R interface?
Folks,
A nice new data resource has come up -- http://data.un.org/
I thought it would be wonderful to setup an R function like
tseries::get.hist.quote() which would be able to pull in some or all
of this data.
I walked around a bit of it and I'm not able to map the resources to
predictable URLs which can then be wget. There's some javascript going
on that I'm not understanding.