Getting separate axis labels on R plotly subplots

不问归期 提交于 2019-12-08 16:00:38

问题


When using the R plotly package version 4.5.6 I haven't been able to figure out how to get axis labels to appear when combining multiple plots using subplot. Here is an example where no x-axis labels appear.

require(plotly)
a <- data.frame(x1=1:3,   y=30:32)
b <- data.frame(x2=11:13, y=31:33)

u <- plot_ly(a)
u <- add_lines(u, x=~x1, y=~y)
v <- plot_ly(b)
v <- add_lines(v, x=~x2, y=~y)
subplot(u, v, shareY=TRUE)

回答1:


To get x-axis labels to show up with subplot, you can set titleX = TRUE. The default is titleX = shareX, and in your example, shareX = FALSE (the default).

subplot(u, v, shareY = TRUE, titleX = TRUE)



来源:https://stackoverflow.com/questions/41324934/getting-separate-axis-labels-on-r-plotly-subplots

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!