如何使用Python的Matplotlib制作空心方形标记?
要在matplotlib中制作空心方形标记,我们可以使用标记‘ ks ’、 markerfacecolor=’none’, markersize=15 和 markeredgecolor=red 。
步骤
- 使用numpy创建x和y的数据点。
-
创建一个图像或激活现有的图像,作为子图安排的一部分添加一个轴到图像中。
-
使用plot()方法绘制x和y的数据点。要制作空心方形标记,我们可以使用标记“ ks ”和 markerfacecolor=”none”, markersize=”15″ 以及 markeredge color=”red” 。
-
使用 show() 方法显示图像。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(-2, 2, 10)
y = np.sin(x)
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.plot(x, y, 'ks', markerfacecolor='none', ms=15, markeredgecolor='red')
plt.show()