R曲线直方图不正确的观察计数

时间:2017-11-22 13:21:33

标签: r histogram plotly

我在绘制直方图时遇到了一些麻烦。 看来这些垃圾箱是错误的。为什么呢?

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
                  )
               )
)

代码创建了错误的情节enter image description here

1 个答案:

答案 0 :(得分:1)

您可以尝试在ggplot2中构建直方图并使用ggplotly函数,如下所示:

library(ggplot2)
library(plotly)
ggplotly(ggplot(data.frame(aaa), aes(aaa)) + geom_histogram(binwidth = 0.005))