📌  相关文章
📜  如何在 pandas 数据框中找到中间、第一、第二和第三四分位数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:21.707000             🧑  作者: Mango

代码示例1
name_of_the_dataframe['name_of_thecolumn'].quantile([0.25,0.5,0.75])


Out[793]: 
0.25    0.483333
0.50    0.500000
0.75    0.516667
Name: time_diff, dtype: float64