将 Series 转换为 NumPy 数组
时间: 2024-05-04 12:20:23 浏览: 98
DataFrame 将某列数据转为数组的方法
要将 Pandas 的 Series 转换为 NumPy 数组,可以使用 Series 对象的 `to_numpy()` 方法。例如:
```python
import pandas as pd
import numpy as np
s = pd.Series([1, 2, 3, 4, 5])
arr = s.to_numpy()
print(arr)
```
输出:
```
[1 2 3 4 5]
```
如果 Series 对象中包含缺失值,转换后的数组也会包含 NaN 值。
阅读全文