dataframe显示数据总行数列数
时间: 2024-09-15 15:07:52 浏览: 62
pandas对dataFrame中某一个列的数据进行处理的方法
5星 · 资源好评率100%
DataFrame是一个二维表格型的数据结构,在Python的pandas库中非常常用,用于存储和处理各种类型的数据。要查看DataFrame的总行数(即记录数)和列数,你可以使用pandas提供的内置函数:
1. 获得总行数(记录数):`df.shape[0]` 或 `df.count()`
这两个方法都会返回DataFrame中的非空值数量,即行数。
2. 获得列数:`df.shape[1]` 或 `len(df.columns)`
`shape`属性会返回一个元组,第一个元素是行数,第二个元素是列数;`len(df.columns)`则是直接获取列的数量。
例如:
```python
import pandas as pd
# 假设df是一个DataFrame实例
df = pd.DataFrame(...)
# 显示总行数和列数
total_rows = df.shape[0]
total_columns = df.shape[1]
print(f"总行数:{total_rows}")
print(f"总列数:{total_columns}")
```
阅读全文