将np.array用pandas存成csv文件
时间: 2023-12-07 07:03:53 浏览: 247
使用pandas库对csv文件进行筛选保存
5星 · 资源好评率100%
可以使用 Pandas 的 DataFrame 将 numpy 的 ndarray 转换为表格形式,并将其存储为 csv 文件。以下是一个示例代码:
```
import pandas as pd
import numpy as np
# 创建一个示例数组
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# 将数组转换为 DataFrame
df = pd.DataFrame(arr)
# 将 DataFrame 存储为 csv 文件
df.to_csv('example.csv', index=False)
```
在此示例中,我们首先使用 numpy 创建了一个示例数组 `arr`,然后使用 Pandas 的 DataFrame 将其转换为表格形式。最后,我们使用 `to_csv` 函数将 DataFrame 存储为 csv 文件,其中 `index=False` 参数表示不要将行索引存储到文件中。
阅读全文