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 describe() 方法

❮ DataFrame 参考


示例

返回 DataFrame 中数据的统计描述

import pandas as pd

data = [[10, 18, 11], [13, 15, 8], [9, 20, 3]]

df = pd.DataFrame(data)

print(df.describe())
自己试试 »

定义和用法

describe() 方法返回 DataFrame 中数据的描述。

如果 DataFrame 包含数值数据,则描述包含每个列的以下信息

count - 非空值的个数。
mean - 平均值。
std - 标准差。
min - 最小值。
25% - 第 25 个百分位数*。
50% - 第 50 个百分位数*。
75% - 第 75 个百分位数*。
max - 最大值。

*百分位数含义:有多少个值小于给定的百分位数。有关百分位数的更多信息,请参阅我们的 机器学习百分位数 章节。


语法

dataframe.describe(percentiles, include, exclude, datetime_is_numeric)

参数

percentileincludeexcludedatetime_is_numeric 参数是 关键字参数

参数 描述
percentile 介于
0 和 1 之间
可选,结果中包含的百分位数列表,默认为
[.25, .50, .75].
include None
'all'

数据类型
可选,结果中允许的数据类型列表
exclude None
'all'

数据类型
可选,结果中不允许的数据类型列表
datetime_is_numeric True
False
可选,默认为 False。设置为 True 以将日期时间数据视为数值

返回值

一个包含每行统计信息的 DataFrame 对象。


❮ 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.