将Python中的DataFrame转化为矩阵
时间: 2023-04-08 18:02:50 浏览: 132
python的dataframe转换为多维矩阵的方法
可以使用DataFrame的values属性将其转化为矩阵,例如:
```python
import pandas as pd
import numpy as np
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
matrix = df.values
print(matrix)
```
输出:
```
[[1 4]
[2 5]
[3 6]]
```
阅读全文