我在绘制直方图时遇到了一些麻烦。 看来这些垃圾箱是错误的。为什么呢?
aaa<-seq(-0.1,0.45,0.005)
plot_ly(y=~aaa,
type="histogram",
showlegend=FALSE,
autobiny=FALSE,
ybins=list(
start=-0.1,
end=0.45,
size=0.005
),
marker=list(
line=list(
width=1
)
)
)
答案 0 :(得分:1)
您可以尝试在ggplot2
中构建直方图并使用ggplotly
函数,如下所示:
library(ggplot2)
library(plotly)
ggplotly(ggplot(data.frame(aaa), aes(aaa)) + geom_histogram(binwidth = 0.005))