如何在使用pcolormesh(Matplotlib)时获得平滑的插值?
为了获得平滑的插值,我们可以使用名为 shading=”gouraud” 的类。
步骤
- 设置图像大小并调整子图之间和周围的填充。
-
使用numpy的 meshgrid 创建数据x和y。
-
使用 pcolormesh() 方法创建一个伪彩色图,使用非正则矩形网格。
-
使用 show() 方法显示图像。
示例
import matplotlib.pylab as plt
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = np.random.random((3, 3))
x = np.arange(0, 3, 1)
y = np.arange(0, 3, 1)
x, y = np.meshgrid(x, y)
plt.pcolormesh(x, y, data, cmap='RdBu', shading='gouraud')
plt.show()