I am trying to plot a tuple of polygons(voronoipolys) in a list that is returned by the code below
import matplotlib.pyplot as plt
import pytess
points = [(1,1), (5,5), (3,5), (8,1)]
voronoipolys = pytess.voronoi(points)
plt.plot(voronoipolys)
plt.show()
I am getting the following error message:
ValueError: setting an array element with a sequence.
Thanks for your help
