dataframe 的一列转化成 numpy
时间: 2024-07-03 13:00:52 浏览: 201
将Dataframe数据转化为ndarry数据的方法
将Pandas DataFrame中的一列转换为NumPy数组,你可以使用Pandas提供的`to_numpy()`方法。以下是一个简单的步骤:
1. **选择列**:首先,你需要确定要转换的列,假设这个列名为`column_name`。
```python
column = df['column_name']
```
2. **转换为NumPy数组**:然后,调用`to_numpy()`方法对列进行转换。
```python
numpy_array = column.to_numpy()
```
现在,`numpy_array`就是一个NumPy数组,包含了DataFrame中指定列的所有数据。
阅读全文