how do I plot on top of a voronoi plot (which is a scipy plot)? Note my question is slightly different than here where they explain how to color a voronoi plot
For instance, imagine that I have some more points
points = np.array([[1,2], [3,4], [5,6], [7,8]])
after a first voronoi plot. I would like to add them within the existing plot. How do I do that?
The voronoi plot I' referring to is scipy.spatial.voronoi_plot_2d()
I think you can simply reuse plot like this: