我正在尝试使用pandas_ml编写混淆矩阵。问题是我有938行x 938列,结果总是被截断地打印。这是我的代码的一部分:
cm = ConfusionMatrix(label_true,label_predicted)
print("Confusion matrix:\n%s" % cm, file = outfile)
这是我当前输出的一个示例:
NOU ADJ ... VERB
NOU 5 1 ... 5
ADJ 4 2 ... 4
... ... ... ... ...
VERB 4 2 ... 5
我该如何解决?我更喜欢使用pandas_ml,因为我希望以这种方式标记输出。