如何转化为numpy数组
时间: 2024-04-23 11:28:18 浏览: 151
python将txt等文件中的数据读为numpy数组的方法
可以使用pandas库中的DataFrame函数将numpy数组转化为DataFrame。具体操作如下:
1. 导入pandas库
```python
import pandas as pd
```
2. 创建numpy数组
```python
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
```
3. 将numpy数组转化为DataFrame
```python
df = pd.DataFrame(arr)
```
4. 查看转化后的DataFrame
```python
print(df)
```
输出结果为:
```
1 2
1 2 3
1 4 5 6
2 7 8 9
```
阅读全文