我開發了一個閃亮的應用程序。我想繪製一個3D散點圖並將其渲染到閃亮的應用程序中。3D情節未顯示
問題是,當我運行應用程序,情節本身並沒有出現。雖然圖例和情節選項出現在繪圖區域。如果我單擊劇情的快照選項,它會以png下載劇情。
這裏是代碼:
#ui.R
actionButton('RUN', 'Run')
plotlyOutput("plot3D")
#server.R
output$plot3D <- renderPlotly({
req(input$RUN)
isolate({
plot_ly(df, x = ~t1, y = ~t2, z = ~t3, type = "scatter3d", mode =
"markers")
})
})
任何想法,爲什麼劇情在劇情方面沒有顯示?
請提供[重複的例子(https://cran.r-project.org/web/packages/reprex/README.html#what-is- a-reprex)如R標籤所示(懸停在它上面)。例如,缺少'df'以及所需的庫調用等。 – lukeA