python - Different marker symbols -


i trying multiple plots not getting specified marker symbols mass flow rate, total pressure , static pressure shown in attached image.



plot

i expect using matplotlib can use this:

#dont forget on import import matplotlib.pyplot plt  # red dashes, blue squares , green triangles plt.plot(t, t, 'r--', t, t**2, 'bs', t, t**3, 'g^') 

in code 'r--', 'bs' , 'g^' means different types of markers.

more examples in matplotlib documentation here: matplotliby.pyplot.plot

for better info should provide more information. post code or update tags question. easy make plots matplotlib.


Comments