Bar Plot

Line Plot

Basic Line plot

fig, ax= plt.subplots(1,1, figsize=(5,5))     
np.random.seed(97)
x = np.arange(7)
y = np.random.rand(7)

ax.plot(x,y, color = 'tomato', marker='^', 
        linestyle='--')

Accurate line plot

Scatter Plot

Basic Scatter Plot