在Seaborn中生成热图

时间:2018-10-22 05:02:14

标签: python seaborn heatmap

我正在研究Seaborn的热点地图。 我这里有一个问题。我有一个足球场,并且使用x和y坐标使用seaborn在场上绘制热图。 当我绘制它时,热图的形状不在背景图中,如下所示:

enter image description here

我的俯仰图如下:

enter image description here

我检查了数据,在坐标系中Ymax为100,xMax为200。

如您所见,Xmax大于200,Ymax约为120。 如何绘制热图以适合背景足球场。

我用于热图的代码如下:

fig=plt.figure()
fig.set_size_inches(7, 5)
ax=fig.add_subplot(1,1,1)  

sns.kdeplot(data["Xstart"],data["Ystart"], cmap="Reds", shade=True,n_levels=40)
plt.ylim(0, 100)
plt.xlim(0, 200)

您的建议将不胜感激。 第二个问题是我想在seaborn kdeplot中使用以下颜色图

enter image description here

谢谢, 压缩

0 个答案:

没有答案