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
     ❯   

数据科学 - 统计标准差


标准差

标准差是一个描述观察值分散程度的数值。

Standard Deviation

如果观察值“分散”,数学函数将难以预测精确值。标准差是衡量不确定性的指标。

标准差较低意味着大多数数值接近平均值。

标准差较高意味着数值分散在较宽的范围内。

提示:标准差通常用符号 Sigma 表示:σ

我们可以使用 Numpy 中的 std() 函数来查找变量的标准差

示例

import numpy as np

std = np.std(full_health_data)
print(std)
自己试试 »

输出结果

Standard Deviation

这些数字意味着什么?


变异系数

变异系数用于了解标准差的大小。

从数学上讲,变异系数定义为

变异系数 = 标准差 / 平均值

 如果我们使用以下代码,可以在 Python 中进行此操作

示例

import numpy as np

cv = np.std(full_health_data) / np.mean(full_health_data)
print(cv)
自己试试 »

输出结果

Coefficient of Variation

我们可以看到,与 Max_Pulse、Average_Pulse 和 Hours_Sleep 相比,变量 Duration、Calorie_Burnage 和 Hours_Work 具有较高的标准差。


×

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.