AttributeError: 'DataFrame' object has no attribute 'as_matrix' 3 我的拓展训练
时间: 2023-11-11 11:05:26 浏览: 77
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是因为在新版本的pandas中,as_matrix()方法已经被弃用,所以DataFrame对象没有as_matrix属性。解决方法是使用values属性代替as_matrix()方法,例如使用x.values代替x.as_matrix()。另外,如果需要将一个numpy数组转换为DataFrame对象,可以使用pd.DataFrame()方法,例如x=pd.DataFrame(x)。
阅读全文