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
apple=[2.03,2.46,2.67,3,50]
plt.plot(apple)
[<matplotlib.lines.Line2D at 0x7f608a21e9d0>]
Notebook Image
plt.plot(apple);
Notebook Image