pandas中切割打他frame
时间: 2023-07-13 10:37:58 浏览: 163
在Pandas中,您可以使用 `.iloc[]` 和 `.loc[]` 方法来切割数据帧(DataFrame)。
`.iloc[]` 方法是基于索引号进行切割,而 `.loc[]` 方法是基于标签进行切割。
以下是一些示例代码:
```python
import pandas as pd
# 创建一个数据帧
df = pd.DataFrame({'A': [1, 2, 3, 4, 5], 'B': [10, 20, 30, 40, 50], 'C': [100, 200, 300, 400, 500]})
# 使用iloc方法切割前三行和所有列
df1 = df.iloc[:3, :]
# 使用loc方法切割'A'列中索引号为0到2的数据
df2 = df.loc[0:2, 'A']
# 使用iloc方法切割第2行和第3行的数据
df3 = df.iloc[1:3, :]
print(df1)
print(df2)
print(df3)
```
输出结果如下:
```
A B C
0 1 10 100
1 2 20 200
2 3 30 300
0 1
1 2
2 3
Name: A, dtype: int64
A B C
1 2 20 200
2 3 30 300
```
请注意,这只是Pandas中切割数据帧的基本示例。如果您需要更多的操作,请参阅Pandas文档以获取更多信息。
阅读全文