dataframe计算行数
时间: 2023-09-29 17:08:13 浏览: 82
pythonDataFrame获取行数、列数、索引及第几行第几列的值.pdf
要计算 dataframe 的行数,可以使用 `shape` 属性或 `len()` 函数。
使用 `shape` 属性:
```python
row_count = df.shape[0]
```
使用 `len()` 函数:
```python
row_count = len(df)
```
这两种方法都可以得到 dataframe 的行数。
阅读全文