关于使用fill_between
的问题:
在下面的代码片段中使用fill_between
添加了一条不需要的垂直线和水平线。这是因为参数方程吗?我该如何修复它?
import matplotlib.pyplot as plt
import numpy as np
t = np.linspace(0, 2 * np.pi, 100)
x = 16 * np.sin(t)**3
y = 13 * np.cos(t) - 5 * np.cos(2*t) - 2*np.cos(3*t) - np.cos(4*t)
plt.plot(x,y, 'red', linewidth=2)
plt.fill_between(x, y, color = 'red', alpha = 0.2)
结果如下:
1条答案
按热度按时间1yjd4xko1#
可以使用
plt.fill
填充由xy值界定的区域。plt.fill_between
填充零和定义为y是x的函数的曲线之间的区域。或者在循环中: