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?
