I tried it but I keep getting an error. Below is the code I use to plot:
from shapely.geometry import Polygon
import matplotlib.pyplot as plt
polygon1 = Polygon([(0,5),
(1,1),
(3,0),
])
plt.plot(polygon1)
plt.show()
However, I keep getting a TypeError: float() argument must be a string or a number, not 'Polygon'
when calling plt.plot(polygon1)
.