scipy voronoi_plot_2d函数将可选参数分类为“意外”

时间:2019-03-06 18:13:09

标签: python scipy

我正在运行Scipy文档(https://scipy.github.io/devdocs/generated/scipy.spatial.voronoi_plot_2d.html)中的基本voronoi_plot_2d()示例:

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

vor = Voronoi(points)

fig = voronoi_plot_2d(vor, show_vertices=False, line_colors='orange', line_width=2, line_alpha=0.6, point_size=2)

我收到以下错误:

  

回溯(最近一次通话最后一次):文件“ stochastic.py”,第125行,   在       无花果= voronoi_plot_2d(vor,show_vertices = False,line_colors ='orange',line_width = 2,line_alpha = 0.6,point_size = 2)   TypeError:voronoi_plot_2d()获得了意外的关键字参数   'show_vertices'

Scipy和Matplotlib都是最新的。

0 个答案:

没有答案