中已发布应用的展示显示模式
使用两个文件(ui.r and server.r)时,可以使用以下方式更改显示模式:
runApp("MyApp", display.mode = "showcase")
如何将显示模式设置为单文件闪亮应用的"展示"?
thx!
可以使用描述文件更改显示模式。
在此问题中回答的详细信息:ShinyApps.io
现在呢?
runApp(display.mode = 'showcase',
list(
ui=shinyUI(fluidPage(
numericInput('n', 'Number of obs', 100),
plotOutput('plot')
)),
server= shinyServer(function(input, output) {
output$plot <- renderPlot({ hist(runif(input$n)) })
})
))