pandas的describe可以用来展示数据的一些描述性统计信息,因此经常用到。
df
=
pd
.
DataFrame
(
data
=
{
'A'
:
list
(
'abaacdadaf'
)
,
'B'
:
[
2
,
4
,
6
,
3
,
6
,
2
,
5
,
8
,
0
,
2
]
}
)
percentiles
:
设置输出的百分位数,默认为
[
.25
,
.5
,。
75
]
,返回第
25
,第
50
和第
75
百分位数。
eg
:
df
.
describe
(
percentiles
=
[
.8
,
.9
]
)
include
:
默认只输出数值型数据的统计信息
(
如上
)
,
设置参数为
'all'
则输入的所有列都在输出中
,
设置为
O
则只输出离散型变量的统计信息
eg
:
df
.
describe
(
include
=
'all'
)
eg
:
df
.
describe
(
include
=
'O'
)
exclude:和参数include是相反的
,
表示不输出哪些
eg
,
exclude
=
'O'
则表示不输出离散型
eg
:
df
.
describe
(
exclude
=
'O'
)
欢迎添加个人微信号:liu2536036458。
想进入交流群的,备注:
数据分析交流群