pandas如何统计分位数
时间: 2023-05-27 15:06:13 浏览: 207
基于Python数据分析之pandas统计分析
Pandas中可以使用`quantile()`函数来计算分位数。
示例代码:
```python
import pandas as pd
# 创建一个Series
s = pd.Series([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
# 计算50%分位数
print(s.quantile(0.5))
# 计算25%分位数
print(s.quantile(0.25))
# 计算75%分位数
print(s.quantile(0.75))
```
输出结果:
```
5.5
3.25
7.75
```
其中,`quantile()`函数的参数为分位数值,取值范围为[0, 1]。例如,`quantile(0.5)`表示计算50%分位数。
阅读全文