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
     ❯   

数据科学 - 统计学百分位数


25%、50% 和 75% - 百分位数

百分位数用于统计学,它提供一个数值来描述给定百分比的值低于该数值。

Percentiles

让我们尝试通过一些例子来解释它,使用 Average_Pulse。

  • Average_Pulse 的 25% 百分位数意味着 25% 的所有训练课程的平均脉搏为每分钟 100 次或更低。如果我们反过来说,则意味着 75% 的所有训练课程的平均脉搏为每分钟 100 次或更高。
  • Average_Pulse 的 75% 百分位数意味着 75% 的所有训练课程的平均脉搏为 111 或更低。如果我们反过来说,则意味着 25% 的所有训练课程的平均脉搏为每分钟 111 次或更高。

任务:查找 Max_Pulse 的 10% 百分位数

以下示例显示了如何在 Python 中执行此操作

示例

import numpy as np

Max_Pulse= full_health_data["Max_Pulse"]
percentile10 = np.percentile(Max_Pulse, 10)
print(percentile10)
自己尝试 »
  • Max_Pulse = full_health_data["Max_Pulse"] - 从完整的健康数据集隔离变量 Max_Pulse。
  • np.percentile() 用于定义我们想要从 Max_Pulse 中获取 10% 百分位数。

Max_Pulse 的 10% 百分位数是 120。这意味着 10% 的所有训练课程的 Max_Pulse 为 120 或更低。


×

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.