How do you plot a vertical line on a time series plot in Pandas ?
How do you plot a vertical line on a time series plot in Pandas ?
Refer to the matplotlib:
plt.axvline(x_position)
The few of the available formatting options are linestlye, color.
Suppose the axes object has a reference:
ax.axvline(x, color='k', linestyle='--')