要创建填充的等高线图,可以使用Seaborn库中的kdeplot()
函数。kdeplot()
函数可以用来绘制二维核密度估计图,通过设置shade=True
参数可以实现填充的效果。
下面是一个示例代码,演示如何使用Seaborn创建填充的等高线图:
import seaborn as sns
import numpy as np
# 生成随机数据
x = np.random.normal(size=1000)
y = np.random.normal(size=1000)
# 创建填充的等高线图
sns.kdeplot(x, y, cmap="Blues", shade=True, shade_lowest=False)
# 添加标题和标签
plt.title('Filled Contour Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图形
plt.show()
在这个示例中,我们生成了两个随机变量x
和y
,然后使用kdeplot()
函数创建了一个填充的等高线图。通过设置shade=True
参数,我们实现了填充的效果。可以根据实际需要调整参数以及添加其他样式和标签。