如何使用pylab画一个心形?
要使用pylab/pyplot绘制心形,可以按照以下步骤进行 –
阅读更多:Python 教程
步骤
- 设置图形大小并调整子图之间和周围的填充。
- 使用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()