R ggplot histogram Bins vs python numpy histogram Bins

时间:2017-04-05 09:47:41

标签: python r numpy ggplot2 histogram

我使用ggplot和numpy创建了一个直方图。我在两个模块上都使用了bin = 30但每个都显示了不同的图形。造成这种差异的原因是什么,我将如何解决?

ggplot代码片段:

注意 :ggplot_histogram使用默认分箱= 30

p <- ggplot(df, aes_string(x = "column_name")) +
         geom_histogram(aes(fill = ..count..))

ggplot histogram graph

numpy python代码片段:

hist, edges = np.histogram("column_name", bins=30)

numpy histogram graph

0 个答案:

没有答案