ValueError:使用matplotlib绘制功能重要性时

时间:2018-12-15 06:37:50

标签: python pandas matplotlib

我有一个数组

logreg.coef_
  

array([[-2.08115860e-01,3.05150136e-03,1.43758267e-05]]

在尝试进行绘制时,出现值错误:

pyplot.bar(range(len(logreg.coef_)), logreg.coef_)
pyplot.show()

ValueError:具有多个元素的数组的真值不明确。使用a.any()或a.all()

0 个答案:

没有答案