使用matplotlib

时间:2016-03-29 05:23:32

标签: python arrays numpy pandas matplotlib

原始dataset包含4个名为df1,df2,df3,df4的数据(全部采用pandas数据帧格式)

df1 = pd.read_csv("./df1.csv")
df2 = pd.read_csv("./df2.csv")
df3 = pd.read_csv("./df3.csv")
df4 = pd.read_csv("./df4.csv")
    # Concat these data 
dataset = [df1,df2, df3,df4]


# Plottting 
fig = plt.figure()
bpl = plt.boxplot(dataset, positions=np.array(xrange(len(dataset)))*2.0-0.4, \
                          sym='+', widths=0.5, patch_artist=True)

plt.show()

但缺少第一个数据df1。我检查df1,发现没有异常。

enter image description here

我以.csv格式上传这4个数据here  任何建议都会很感激!

更新

enter image description here

1 个答案:

答案 0 :(得分:1)

我可以毫无问题地制作情节。