.dataframe的增删改查
时间: 2024-03-28 07:32:10 浏览: 67
数据的增删改查
4星 · 用户满意度95%
DataFrame是Pandas库中的一个重要数据结构,用于处理二维表格数据。下面是DataFrame的增删改查操作的示例:
1. 查找DataFrame中的数据:
```python
# 查找某一列的数据
df['column_name']
# 查找某一行的数据
df.loc[row_index]
# 查找某一单元格的数据
df.loc[row_index, 'column_name']
```
2. 修改DataFrame中的数据:
```python
# 修改某一列的数据
df['column_name'] = new_values
# 修改某一行的数据
df.loc[row_index] = new_values
# 修改某一单元格的数据
df.loc[row_index, 'column_name'] = new_value
```
3. 增加新的数据到DataFrame中:
```python
# 增加新的列
df['new_column'] = values
# 增加新的行
df.loc[new_index] = values
```
4. 删除DataFrame中的数据:
```python
# 删除某一列
df.drop('column_name', axis=1, inplace=True)
# 删除某一行
df.drop(row_index, inplace=True)
```
请注意,上述示例中的`df`是一个DataFrame对象,`column_name`是列名,`row_index`是行索引,`new_values`是新的数据,`new_column`是新的列名,`values`是新的数据值。
阅读全文