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
     ❯   

统计变异性(离散度)

描述性统计 分为 集中趋势变异性

变异性 使用以下度量

  • 最小值和最大值
  • 方差
  • 偏差
  • 分布
  • 偏度
  • 峰度

方差

在统计学中,方差 是数据集中每个数据与平均值之差的平方的平均数。

换句话说,方差描述了一组数字与平均值(平均数)的离散程度

平均值在上一章中进行了描述。

此表包含 11 个值

7889991011141415

计算方差

// 计算平均值 (m)
let m = (7+8+8+9+9+9+10+11+14+14+15)/11;

// 计算平方和 (ss)
let ss = (7-m)**2 + (8-m)**2 + (8-m)**2 + (9-m)**2 + (9-m)**2 + (9-m)**2 + (9-m)**2 + (10-m)**2 + (11-m)**2 + (14-m)**2 + (15-m)**2;

// 计算方差
let variance = ss / 11;

自己尝试 »

或使用像math.js这样的数学库

const values = [7,8,8,9,9,9,10,11,14,14,15];
let variance = math.variance(values, "uncorrected");

自己尝试 »



标准差

标准差是衡量数字离散程度的指标。

符号为σ(希腊字母西格玛)。

公式为方差(方差的平方根)。

标准差(在 JavaScript 中)

// 计算平均值 (m)
let m = (7+8+8+9+9+9+10+11+14+15)/11;

// 计算平方和 (ss)
let ss = (7-m)**2 + (8-m)**2 + (8-m)**2 + (9-m)**2 + (9-m)**2 + (9-m)**2 + (9-m)**2 + (10-m)**2 + (11-m)**2 + (14-m)**2 + (15-m)**2;

// 计算方差
let variance = ss / 11;

// 计算标准差
let std = Math.sqrt(variance);

自己尝试 »

偏差距离的度量。

所有值与平均值(中间值)的平均距离

或者如果您使用像math.js这样的数学库

const values = [7,8,8,9,9,9,9,10,11,14,15];
let std = math.std(values, "uncorrected");

自己尝试 »


×

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.