Closed tommycarstensen closed 7 years ago
There is a commonly implied convention that you do
from matplotlib import pyplot as plt
somewhere in your code.
Works fine
plt.figure(figsize=(8, 6))
sns.tsplot(df_time) plt.xlabel("Time") plt.ylabel("Sales") plt.show()
for this code am getting the error name plt is not defined
Check out my previous comment in this thread.
I get this this error:
With this code:
I also tried the given example: