count=1 plt.subplots(figsize=(10, 8)) for i in df.columns: plt.subplot(3,2,count) sns.scatterplot(df["cnt"],df[i]) count+=1 plt.show()