plt.figure(figsize=(20,5))
sns.lmplot(x='raceId', y='duration', data=newdf)
plt.title('title')
plt.show()
Figure won't change size. I used plt.figure(figsize()) earlier for a different plot and it worked fine. Will I need to make a new plt?
plt.figure(figsize=(20,5))
sns.lmplot(x='raceId', y='duration', data=newdf)
plt.title('title')
plt.show()
Figure won't change size. I used plt.figure(figsize()) earlier for a different plot and it worked fine. Will I need to make a new plt?