标签: python plot data-visualization seaborn
我在seaborn中有热图,我希望刻度线位于它的顶部
graph = sns.heatmap(data=df, annot=True , cbar_kws={"orientation": "horizontal"})
我在matplotlib(Moving x-axis to the top of a plot in matplotlib)上看到了如何做到这一点,但不知道如何在seaborn图上实现它