In [6]:
%pylab inline
import pandas as pd
df= pd.read_csv('iris.csv')
df.head()
Out[6]:
In [8]:
df.Sepal_Length.hist(by=df['Species'])
Out[8]:
In [9]:
df.ix[:,:4].plot(kind='line')
Out[9]:
In [10]:
df1= df.groupby('Species').mean()
df1.plot(kind='bar', stacked=True )
Out[10]:
In [12]:
df.ix[:,:4].plot(kind='scatter',x='Sepal_Length',y='Sepal_Width',by=df['Species'])
Out[12]:
In [13]:
scatter(df.Petal_Length,df.Petal_Width, c=tile([1,2,3],50))
Out[13]:
In []:
今年北京的COS会上,台湾的郭韦廷先生(音)说有人已经把ggplot2移植到python下了,不过我不知道怎么用。。。
回复删除只是初步的移植,许多功能不全,这是作者地址:http://blog.yhathq.com/posts/ggplot-for-python.html
删除其实也可以直接在notebook中调R的ggplot2,参考我七月份的一个博客。