Bir ggplot nesnesini plotly'e dönüştürmeye ve parlak bir uygulamada göstermeye çalışıyorum. Ama Boş " ' ggplot nesnesini parlak uygulamada çizime dönüştürme
başarıyla parlak uygulamaya ggplot nesneyi dönebildi
,output$plot1 <- renderplot({
gp <- ggplot(data = mtcars, aes(x = disp, y = cyl)) + geom_smooth(method = lm, formula = y~x) + geom_point() + theme_gdocs()
})
ama bir şekilde' 'plotly_build' için geçerli bir yöntem sınıf bir nesneye uygulanan" bir hatayla karşılaştı arsa bunu dönüştüremez.
Benim kod bu
output$plot2 <- renderplotly({
gp <- ggplot(data = mtcars, aes(x = disp, y = cyl)) + geom_smooth(method = lm, formula = y~x) + geom_point() + theme_gdocs()
ggplotly()
})
kullanımı renderPlotly yerine – MLavoie