Python: Add Another Point In The Triangle/corner Plot
I am using the triangle/corner plot from python and I follow the simple guide in this webpage. Everything is ok but I was thinking about adding another point in the triangle plot.
Solution 1:
You have to edit over the ax
. So if you want to plot something above, you have to do:
figure, ax = pl.subplots(1, 1)
figure = triangle.corner(samples, labels=["$m$", "$b$"],truths=[m_true, b_true])
ax.plot(...)
Post a Comment for "Python: Add Another Point In The Triangle/corner Plot"