markovmodel / PyEMMA

🚂 Python API for Emma's Markov Model Algorithms 🚂
http://pyemma.org
GNU Lesser General Public License v3.0
311 stars 119 forks source link

[plots] zorder parameter #1334

Closed thempel closed 6 years ago

thempel commented 6 years ago

For overplotting pyemma.plots.plot_contour() with pyemma.plots.plot_flux() or anything network plotting related, I keep getting unreadable figures due to arrows being hidden behind the contour. That spoils the pyemma_tutorials plots I was making. @cwehmeyer do you think we can fix this? matplotlib.contourf() does not naturally support zorder kwargs, if I'm not mistaken. asdf

cwehmeyer commented 6 years ago

You can use the alpha parameter in pyemma.plots.plot_contour().

thempel commented 6 years ago

-.-