我试图让用户选择他希望的显示类型,但是当我尝试渲染绘图时,它给了我一个错误。
这是代码:
library(shiny)
library(DT)
library(data.table)
runApp(list(
ui = fluidPage(
wellPanel(
radioButtons("visuBtn", NULL, choices = c(Table = "table", Plot = "plot"))
),
wellPanel(
uiOutput("DataTable")
)
),
server = function(input, output){
observeEvent(input$visuBtn,{
output$DataTable <- renderUI({
dfconc <- data.table(time = c(1,2,3,4,5), concentration = c(0.1, 0.4, 0.5, 0.7, 0.8))
if(input$visuBtn == "table"){
output$aa <- renderDataTable(dfconc, options = list(paging = FALSE, searching = FALSE))
dataTableOutput("aa")
}
else { ### NOT WORKING
output$aa <- renderPlot({
plot(dfconc$time, dfconc$concentration, xlab = "Time", ylab = "Concentration")
})
fixedRow(
plotOutput("aa")
)
} ###
})
})
}
))
谢谢你的帮助