一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

matplotlib绘图怎么标记路径

时间:2018-01-24 编辑:猪哥 来源:一聚教程网


本文详细介绍了matplotlib绘图标记路径的方法,不知道的朋友快来看看吧。

标记路径

演示效果:

实例代码

import matplotlib.pyplot as plt
import matplotlib.path as mpath
import numpy as np


star = mpath.Path.unit_regular_star(6)
circle = mpath.Path.unit_circle()
# concatenate the circle with an internal cutout of the star
verts = np.concatenate([circle.vertices, star.vertices[::-1, ...]])
codes = np.concatenate([circle.codes, star.codes])
cut_star = mpath.Path(verts, codes)


plt.plot(np.arange(10)**2, '--r', marker=cut_star, markersize=15)

plt.show()

热门栏目