当前位置:  开发笔记 > 编程语言 > 正文

在Seaborn隐藏轴标题

如何解决《在Seaborn隐藏轴标题》经验,为你挑选了1个好方法。

鉴于以下热图,我将如何删除轴标题('月'和'年')?

import seaborn as sns

# Load the example flights dataset and conver to long-form
flights_long = sns.load_dataset("flights")
flights = flights_long.pivot("month", "year", "passengers")

# Draw a heatmap with the numeric values in each cell
sns.heatmap(flights, annot=True, fmt="d", linewidths=.5)

当前图表



1> Dance Party2..:

在调用之前,先使用sns.heatmapplt.subplots,然后使用set_xlabelset_ylabel.例如:

import seaborn as sns
import matplotlib.pyplot as plt

# Load the example flights dataset and conver to long-form
flights_long = sns.load_dataset("flights")
flights = flights_long.pivot("month", "year", "passengers")

# ADDED: Extract axes.
fig, ax = plt.subplots(1, 1, figsize = (15, 15), dpi=300)

# Draw a heatmap with the numeric values in each cell
sns.heatmap(flights, annot=True, fmt="d", linewidths=.5)

# ADDED: Remove labels.
ax.set_ylabel('')    
ax.set_xlabel('')

新图

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有