朋友!
如果我在R中使用plotly绘制条形图,默认情况下,条形之间没有间距。
我的问题是:
非常感谢!
答案 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