Learn practical skills, build real-world projects, and advance your career
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 0xb7f5520>]
Notebook Image
plt.plot(yield_apples);
Notebook Image
years = [2010, 2011, 2012, 2013, 2014, 2015]
yield_apples = [0.895, 0.91, 0.919, 0.926, 0.929, 0.931]