我正在学习闪亮的仪表板,我无法找到运行应用程序选项,该选项位于我们编写代码的窗格中,运行应用程序选项不可见。请协助启用相同功能。
我正在尝试为我使用闪亮生成的输出添加图形。我在生成图形时出错。有人可以看看并提供帮助。条形图参数是根据计算生成的基于计算的输出。
server
output$graph<- renderPlotly({
plotly( x= c(as.numeric(input$contract), round(frateperton()), differencerate()),
y= c('Contract Rate', 'ZBC Rate', 'Difference'),
name = "Zero Based Rate Chart",
type = "bar")
})
UI
plotlyOutput("graph"),
Run Code Online (Sandbox Code Playgroud)