无法在python中使用ggplot进行绘图

时间:2016-10-16 20:51:52

标签: python ggplot2 python-ggplot

我正在尝试在python中开始使用ggplot库。我在Enthought Canopy中使用V 2.7.6。当我尝试运行简单脚本

from ggplot import *

print ggplot(mtcars, aes('mpg', 'qsec')) + \
    geom_point(colour='steelblue') + \
    scale_x_continuous(breaks=[10,20,30],  \
                  labels=["horrible", "ok", "awesome"])

我收到以下错误:

AttributeError: 'DataFrame' object has no attribute 'select_dtypes'

有什么想法吗?感谢。

0 个答案:

没有答案