MachineLearningLifeScience / stochman

Algorithms for computations on random manifolds made easier
Apache License 2.0
85 stars 11 forks source link

Add support for plotting in particular axes in `BasicCurve` #11

Closed miguelgondu closed 2 years ago

miguelgondu commented 2 years ago

It would be great to have the affordance of plotting a curve in the same axis as we e.g. plot volume. Inspired by seaborn, I will implement something like

_, ax = plt.subplots(1, 1)
geodesic, _ = m.connecting_geodesic(p0, p1)
geodesic.plot(ax=ax)