在我的flexdashboard中,我使用了“ plotly”库来绘制图形。当那时刷新数据时,条尺寸会减小。当时,当我单击“自动缩放”选项时,它工作正常。我的问题是我们可以通过plotly.r代码中的任何选项自动启用自动缩放吗?
答案 0 :(得分:1)
尝试在autorange = TRUE
选项中为x和y轴设置layout
。
这为我解决了这个问题。
示例:
plot_ly(x, y, type = "bar") %>%
layout(xaxis = list(autorange = TRUE),
yaxis = list(autorange = TRUE))
对于R中的其他绘图轴修改,请检查此page。