📌  相关文章
📜  'DataFrame' 对象没有属性 'as_matrix' - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:53.986000             🧑  作者: Mango

代码示例1
#As of Pandas 1.0 use .to_numpy() other ways are deprecated
df = pd.read_excel('[Path to Xlsx]',sheet_name='[name of xl sheet]')
df.to_numpy()