Matplotlib - Performance and Large Data
What will be the output of this code snippet?
import matplotlib.path as mpath p = mpath.Path([(0, 0), (1, 1), (2, 2), (3, 3)]) p._simplify_threshold = 0.5 print(len(p.vertices))
