标签: r histogram data-visualization plotly
我以
plot_ly(x = ~rnorm(50), type = "histogram")
这会产生一个很好的交互式情节,但我很好奇是否可以添加线条以显示分类中的分离。
谢谢。
答案 0 :(得分:2)
此代码在条形之间添加间距:
plot_ly(x = ~rnorm(50), type = "histogram") %>% layout(bargap=0.1)