2016-11-16 115 views

回答

2

也許你可以使用renderText代替

library(shiny) 
a3 <- 0.7976529 
ui <- fluidPage(verbatimTextOutput("oaccura")) 
server <- function(input, output, session) { 
    output$oaccura <- renderText({a3}) 
} 
runApp(list(ui = ui, server = server)) 

enter image description here

+0

'renderText'的伎倆。 –

相關問題