sort_values(), sort_index().plot()
Best for sequence data
Elements for 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='--')
Changing gaps between data can generate misunderstandings
Interpolation
google_rolling=google.rolling(window=10).mean()
Dual axis
.twinx().secondary_xaxis(), .secondary_yaxis()ETC
.scatter()