如何将Xlabel移到顶部

时间:2018-03-22 04:27:56

标签: pandas machine-learning

有什么方法可以将xLabel(预测标签)0,1移动到混淆矩阵的顶部?感谢任何帮助。

from sklearn.metrics import accuracy_score
plt.figure(figsize=(6,4))
sns.heatmap(cm_rf, annot=True, fmt="d")
plt.title('Random Forest Tree \nAccuracy:{0:.3%}\n'.format(accuracy_score(test_y, predict_rf_y)))
plt.ylabel('True label')
plt.xlabel('Predicted label')
plt.show()

My output

1 个答案:

答案 0 :(得分:1)

您正在寻找的属性是'ax.xaxis.set_ticks_position('top')'& 'ax.xaxis.set_label_position(' 顶部 ')':

f, ax = plt.subplots(figsize=(6, 4))
sns.heatmap(np.random.randint(0, 3, size=(2, 2)), annot=True, fmt="d")
ax.set_title('Random Forest Tree \nAccuracy:{format}\n', y=1.08)
ax.set_ylabel('True label')
ax.set_xlabel('Predicted label')

ax.xaxis.set_ticks_position('top')
ax.xaxis.set_label_position('top')

希望这有帮助