I want to plot some data, but instead of having the marker centered on the line, I need to have the lower vertex of the triangle aligned with the line. How can this be done?
Here is my MWE:
import matplotlib.pyplot as mplt
data = [1.]*10
mplt.plot(data, 'rv-' )
mplt.show()
Cheers, Jorge