I have a regular line graph
plt.figure(figsize=(10,5))
plt.plot(db['month_date'], db['quantity'], alpha=0.7)
plt.ylabel('quantity')
plt.title('Quantity cards ')
plt.show()
This generates a normal line graph with a blue line, is there a way that the last three values of quantity are highlithed in a different color? So the normal Blue line and the last three values being red perhaps. If any one can help I would appreciate it very much.