When using the R version of the package plotly 4.5.6, I was not able to figure out how to get the axis labels that will be displayed when combining several plots with subplot . Here is an example where x-axis labels are not displayed.
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)
source share