python数组转变成数据框
时间: 2023-06-10 13:03:27 浏览: 122
数据分析-python数组
5星 · 资源好评率100%
将 Python 数组转换成数据框可以使用 Pandas 库中的 `DataFrame` 函数。代码示例如下:
```python
import pandas as pd
my_array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
df = pd.DataFrame(my_array)
print(df)
```
输出结果为:
```
0 1 2
0 1 2 3
1 4 5 6
2 7 8 9
```
在这个例子中,我们首先导入 Pandas 库,然后创建一个二维数组 `my_array`,然后将其传递给 `DataFrame` 函数。最后,我们将数据框打印到屏幕上。
阅读全文