I am trying to plot two countplots showing the counts of batting and bowling. I tried the following code:
l=['batting_team','bowling_team']
for i in l:
sns.countplot(high_scores[i])
mlt.show()
But by using this , I am getting two plots one below the other. How can i make them order side by side?
Something like this:
The idea is to specify the subplots in the figure - there are numerous ways to do this but the above will work fine.