我是python的新手,我想用python创建网格图,就像Qlikview那样。
我找到了一种方法,但是它绘制了独立图表的列表
Example = {'GroupId': ['1','1','1','2','2','2'],
'y': [22000,25000,27000,35000,24000,17000],
'x': [1,2,3,1,2,3]
}
data4= pd.DataFrame(Example ,columns= ['GroupId', 'y', 'x'])
## list2 has a sample of Group Ids
list2=[1,2]
for i in list2:
a=data4.loc[data4['GroupId']==i]
ax1 = a.plot.scatter(x='x', y='y')
我希望像Matplot子图函数那样,通过Group列打开n个散点图的网格(n代表Group的不同值)。