在R中Plotly:如何增加吧之间的空间?

时间:2017-06-20 15:13:40

标签: r plotly

朋友!

如果我在R中使用plotly绘制条形图,默认情况下,条形之间没有间距。

我的问题是:

  1. 如何增加酒吧之间的空间? (见图)
  2. 如何避免文字和条形图的重叠? (见图)
  3. 非常感谢!

    illustration

1 个答案:

答案 0 :(得分:0)

使用数字x轴时会发生这种情况...尝试输入as.factor(VARIABLE)

示例:计算包含渐变类的行数 df =您正在绘制的数据框; x =您正在绘制的变量

plot_ly(df,x = df $ x)

 -this gives you a messy looking blob

plot_ly(df,x = as.factor(df $ x))

 -now it is known that your x axis is a factor, it will separate each value and break it up with a space in between