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의 set_label_position (위에 언급 된대로)을 호출 하면 원하는 효과가없는 것 같습니다. 내 결과는 다음과 같습니다.
내가 뭘 잘못하고 있죠?