web-dev-qa-db-ja.com

シーボーンで2つのカウントプロットグラフを並べてプロットするにはどうすればよいですか?

バッティングとボウリングのカウントを示す2つのカウントプロットをプロットしようとしています。私は次のコードを試しました:

l=['batting_team','bowling_team']
for i in l:
    sns.countplot(high_scores[i])
    mlt.show()

しかし、これを使用することにより、2つのプロットが上下に表示されます。並べて注文するにはどうすればよいですか?

16
user517696

このようなもの:

import seaborn as sns
import pandas as pd
import matplotlib.pyplot as plt

batData = ['a','b','c','a','c']
bowlData = ['b','a','d','d','a']

df=pd.DataFrame()
df['batting']=batData
df['bowling']=bowlData


fig, ax =plt.subplots(1,2)
sns.countplot(df['batting'], ax=ax[0])
sns.countplot(df['bowling'], ax=ax[1])
fig.show()

enter image description here

アイデアは、図内のサブプロットを指定することです-これを行うには多くの方法がありますが、上記はうまく機能します。

28
Robbie
import matplotlib.pyplot as plt
l=['batting_team', 'bowling_team']
figure, axes = plt.subplots(1, 2)
index = 0
for axis in axes:
  sns.countplot(high_scores[index])
  index = index+1
plt.show()
1
Ravi G