...Hi
I write a miniUI to create a dataframe.
how to save the dataframe output after I close the miniUI(shiny Gadget UI) ?
My purpose is create a new dataframe by filter a old dataframe using miniUI
for example , how can I call the [output$table] after i close miniUI(shiny Gadget UI) ?
output$table <- renderTable({
select_var001=input$select
where_var001=where_var001=data.frame(left=c('country','gdpPercap'),fomulate=c('=','>'),right=c('"Afghanistan"','1'))
sql=make_sql(select_var001,where_var001)
data=sqldf(sql)
})
https://shiny.rstudio.com/articles/gadget-ui.html
Thank you
T