Learn practical skills, build real-world projects, and advance your career
!pip install matplotlib seaborn --upgrade --quiet
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
yield_apples = [0.895, 0.91, 0.919, 0.926, 0.929, 0.931]
plt.plot(yield_apples)
[<matplotlib.lines.Line2D at 0x7f27c76b8670>]
Notebook Image
plt.plot(yield_apples);
Notebook Image