编程语言
首页 > 编程语言> > 在SciPy中的python – voronoi_plot_2d,虚线和实线之间的区别?和警告?

在SciPy中的python – voronoi_plot_2d,虚线和实线之间的区别?和警告?

作者:互联网

所以我使用的是函数voronoi_plot_2d(),这是SciPy的一部分,当我绘制我的图时,我得到了下图,其中一些在集群之间有一些实线边界,一些有虚线边框. (隐藏每个群集的散点图)

他们背后有不同的含义吗?如果它们是同一个东西,我怎么能指定我只想绘制实线边框?文档(http://scipy.github.io/devdocs/generated/scipy.spatial.voronoi_plot_2d.html)没有提及任何内容.

enter image description here

另外,我收到了以下警告

MatplotlibDeprecationWarning: The ishold function was deprecated in version 2.0.
MatplotlibDeprecationWarning: axes.hold is deprecated.

当我使用voronoi_plot_2d()函数时.我正在运行Python 3.5,有没有办法让警告消失?我没有在我的代码中使用ishold函数或axes.hold,因此警告必须来自voronoi_plot_2d()内部.

解决方法:

虚线是无限的,当Voronoi单元是无限时使用.

标签:python,scipy,voronoi
来源: https://codeday.me/bug/20190701/1350745.html