Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Pandas DataFrame info() 方法

❮ DataFrame 参考


示例

返回 DataFrame 的摘要

import pandas as pd

df = pd.read_csv('data.csv')

df.info()
自己试试 »

定义和用法

The info() 方法打印有关 DataFrame 的信息。

这些信息包括列数、列标签、列数据类型、内存使用情况、范围索引以及每列中的单元格数(非空值)。

注意:info() 方法实际上是打印信息。您无需使用 print() 方法来打印信息。


语法

dataframe.info(verbose,buf,max_cols,memory_usage,show_counts,null_counts)

参数

这些参数是 关键字参数

参数 描述
verbose True|False 可选。是否打印所有信息
buf 缓冲区 可选。输出到缓冲区而不是 sys.stdout。在写入文件时很有用
max_cols 整数 可选。指定您想要获取信息的列数
memory_usage True|False|字符串 可选。指定是否打印内存使用情况,或“deep”以进行内存使用情况的真实计算(以高昂的计算资源为代价),而不是基于数据类型和行数的估计(成本较低)。
show_counts True|False 可选。指定是否打印非空计数

返回值

无。 info() 方法不返回任何值,它打印信息。


❮ DataFrame 参考

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.