##################################
#############Tabelas
#################################
output$table2 <- DT::renderDataTable({
rm(list=ls())
if(input$vetornome2=="ADILSONVOL2CAP6EXE1"){
data <- ADILSONVOL2CAP6EXE1
} else {
if(input$vetornome1=="ADILSONVOL2CAP6EXE2"){
data <- ADILSONVOL2CAP6EXE2
} else {
data <- ADILSONVOL2CAP20EXEMP1
}
}
DT::datatable(data,
class = 'cell-border stripe',
extensions = 'Buttons', options = list(
dom = 'Bfrtip',
buttons = c('pageLength','copy', 'csv', 'excel', 'pdf', 'print')
))
})
##################################
#############Graficos
#################################
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.