gpt4 book ai didi

pandas - 如何将 Xlabel 移动到顶部

转载 作者:行者123 更新时间:2023-11-30 09:07:03 26 4
gpt4 key购买 nike

有什么方法可以将 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

最佳答案

您要查找的属性是 ax.xaxis.set_ticks_position('top')ax.xaxis.set_label_position('top')。例如:

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')

希望这有帮助

关于pandas - 如何将 Xlabel 移动到顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49420563/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com