作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
from sklearn.metrics import confusion_matrix
from sklearn.metrics import plot_confusion_matrix
print('*** Test Accuracy ***',forest.score(X_test,y_test))
disp = plot_confusion_matrix(forest, X_test, y_test,
display_labels=[0,1],
cmap=plt.cm.Blues,
values_format='g'
)
最佳答案
您正在使用 values_format='g'
指示格式. format g
当数字很大时,倾向于使用科学记数法(如您的情况)
尝试通过 values_format='d'
或 values_format='.0f'
反而
关于python-3.x - Plot_confusioin_matrix 图不显示整数值,而是显示一些指数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59990375/
我有兴趣报告多个时间序列列中超过阈值的日期。该索引是与时间序列数据相关的站点位置相关的日期时间值和列名称。我需要一个类似于“idxmax”的函数,但要返回时间序列中首次超过阈值的索引。这似乎是一项简单
我是一名优秀的程序员,十分优秀!