Problem plotting convex hull of random points

264 Views Asked by At

Something that escapes me...

When I run the first program below in a Jupyter notebook:

import numpy as np
from numpy import random
from scipy.spatial import ConvexHull
import matplotlib.pyplot as plt

points = np.random.rand(30, 2)

hull = ConvexHull(points)

plt.plot(points[:,0], points[:,1], 'o')

for simplex in hull.simplices:
    plt.plot(points[simplex,0], points[simplex,1], 'k-')

I get, as expected, a plot of points and convex hull:

enter image description here

And when, after that, I run the second program below:

import numpy as np
from numpy import random
from scipy.spatial import ConvexHull, convex_hull_plot_2d

points = np.random.rand(30, 2)

hull = ConvexHull(points)

convex_hull_plot_2d(hull)

I get a double plot !

enter image description here

What am I missing?

0

There are 0 best solutions below