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
yields_apple=[0.895,0.91,0.919,0.926,0.929,0.931]
plt.plot(yields_apple)
[<matplotlib.lines.Line2D at 0x7f2d3c7304f0>]
Notebook Image
yields_apple
[0.895, 0.91, 0.919, 0.926, 0.929, 0.931]