this question about heatmaps in matplotlibに基づいて、x軸のタイトルをプロットの先頭に移動したいと考えました。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()
しかしながら、(上記のように表記)matplotlib's set_label_positionを呼び出して所望の効果を有するとは思われません。ここに私の出力です:
私が間違って何をしているのですか?あなたはset_ticks_position
はなくset_label_position
たい
BとCの間にX軸を入れる方法を教えてもらえますか? 私は一日中成功したが、成功しなかった – DaniPaniz