Python ggplot直方图binwidth和bin参数不起作用

时间:2016-10-10 11:15:51

标签: python python-2.7 pandas histogram python-ggplot

我在Python中使用yhat的ggplot和pandas数据帧。创建直方图时,bins - 和binwidth - 参数将被完全忽略。例如:

import ggplot as gp
import pandas as pd
import numpy as np

np.random.seed()
num=1000
df = pd.DataFrame({'A':np.random.randn(num)})

gp.ggplot(gp.aes(x='A'),data=df) + gp.geom_histogram(bins=0.1)

我设置binsbinwidth的方式并不重要,我总是得到相同的图片,参数根本没有效果。

我完全按照文档中的示例进行操作:http://ggplot.yhathq.com/docs/geom_histogram.html

我见过其他网站使用该语法提供示例,表明它应该正常工作,所以我在这里缺少什么?

ggplot 0.10.4
Python 2.7

0 个答案:

没有答案