Hello I'm learning seaborn, pandas and matplotlib and trying to visualize some data.
Im trying to move the 0 value in 0 axis to x axis. This is how it looks currently and I want to move it down.
Hello I'm learning seaborn, pandas and matplotlib and trying to visualize some data.
Im trying to move the 0 value in 0 axis to x axis. This is how it looks currently and I want to move it down.
You can use:
sns.regplot(x,y)
plt.ylim(0)