相关疑难解决方法(0)

将x轴移动到matplotlib中的绘图顶部

基于这个关于matplotlib中的热图的问题,我想将x轴标题移动到图的顶部.

import matplotlib.pyplot as plt
import numpy as np
column_labels = list('ABCD')
row_labels = list('WXYZ')
data = np.random.rand(4,4)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=plt.cm.Blues)

# put the major ticks at the middle of each cell
ax.set_xticks(np.arange(data.shape[0])+0.5, minor=False)
ax.set_yticks(np.arange(data.shape[1])+0.5, minor=False)

# want a more natural, table-like display
ax.invert_yaxis()
ax.xaxis.set_label_position('top') # <-- This doesn't work!

ax.set_xticklabels(row_labels, minor=False)
ax.set_yticklabels(column_labels, minor=False)
plt.show()
Run Code Online (Sandbox Code Playgroud)

但是,调用matplotlib的set_label_position(如上所述)似乎没有达到预期的效果.这是我的输出:

在此输入图像描述

我究竟做错了什么?

python plot data-visualization matplotlib

101
推荐指数
3
解决办法
7万
查看次数

标签 统计

data-visualization ×1

matplotlib ×1

plot ×1

python ×1