我正在研究R项目,并且正在尝试为我的项目使用plot_ly和subplot,但是
#Plot for samples
plot.x10 <- plot_ly(x = xbar.1x10, type = "histogram", name = "10")
plot.x20 <- plot_ly(x = xbar.1x20, type = "histogram", name = "50")
plot.x30 <- plot_ly(x = xbar.1x30, type = "histogram", name = "100")
plot.x40 <- plot_ly(x = xbar.1x40, type = "histogram", name = "200")
#Produce plot
subplot(plot.x10,plot.x20,plot.x30,plot.x40,nrows=2)%>%
layout(title = "Cost Plus Rent Disbitrution")
但是当我运行这段代码时,错误显示:未使用的参数(nrows = 2)
我不知道如何解决它,或者出了什么问题?
有什么建议吗?
非常感谢您