我正在尝试使用散点图创建一个闪亮的应用程序,我收到错误“
Uncaught DefinitionError:错误的规范 polychart2.standalone.js:263
我已经读过使用renderchart2会解决这个问题,但我仍然遇到同样的错误,我使用的是rcharts的最新开发版本,这是我的代码
UI.R
# A bunch of user input
mainPanel(showOutput("data","polycharts"))
server.R
# combined matrix is declared here
shinyServer(function(input, output)
{
output$data <- renderChart2({
# x and y are the column headers to be plotted
plot <- rPlot(x=x,y=y, data=combined_matrix,
color = "Categories", facet = "Categories",
type='point')
plot$set(dom= 'data')
return(plot)
})
感谢您的帮助