如何使用 pylab 绘制心形?
matplotlibpythondata visualization
要使用 pylab/pyplot 绘制心形,我们可以按照下面给出的步骤 −
步骤
- 设置图形大小并调整子图之间和周围的填充。
- 使用 numpy 创建 x、y1 和 y2 数据点。
- 使用 fill_between() 方法填充 (x, y1) 和 (x, y2) 之间的区域。
- 使用 text() 方法在 (0, -1.0) 点处将文本放置在图上。
- 要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-2, 2, 1000) y1 = np.sqrt(1 - (abs(x) - 1) ** 2) y2 = -3 * np.sqrt(1 - (abs(x) / 2) ** 0.5) plt.fill_between(x, y1, color='red') plt.fill_between(x, y2, color='red') plt.text(0, -1.0, 'Heart', fontsize=24, color='black', horizontalalignment='center') plt.show()