codecamp

Statistics - Arithmetic Mode of Continous Series

当基于范围及其频率给出数据时。 以下是连续系列的例子:

项目 0-5 5-10 10-20 20-30 30-40
频率 2 5 1 3 12

$ M_o = {L} + \\ frac {f_1-f0} {2f_1-f_0-f_2} \\ times {i} $

其中 -

  • $ {M_o} $ =模式

  • $ {f_1} $ =模态类的频率

  • $ {f_0} $ =预模式类的频率

  • $ {f_2} $ =类成功模式类的频率

  • $ {i} $ =类间隔。

在存在具有相等的最高频率的两个变量值的情况下,则该系列是双模的,并且模式被说成是不明确的。 在这种情况下,模式由以下公式计算:

Mode = 3中值 - 2平均值

算术模式可用于描述定性现象。 消费者偏好,品牌偏好等。当分布不正常时,优选作为集中趋势的度量,因为它不受极值的影响。

例子

问题陈述:

从以下数据计算算术模式:

工资
(卢比)
工人数
0-5 3
5-10 7
10-15 15
15-20 30
20-25 20
25-30 10
30-35 5

解决方案:

使用以下公式

$ M_o = {L} + \\ frac {f_1-f0} {2f_1-f_0-f_2} \\ times {i} $

  • $ {L} $ = 15

  • $ {f_1} $ = 30

  • $ {f_0} $ = 15

  • $ {f_2} $ = 20

  • $ {i} $ = 5

代入值,我们得到

$M_o = {15} + \frac{30-15}{2 \times 30-15-20} \times {5} \\[7pt] \, = {15+3} \\[7pt] \, = {18}$

因此算术模式为18。


Statistics - Standard Deviation of Individual Data Series
Statistics - Standard Deviation of Discrete Data Series
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Statistics Tutorial

Statistics Useful Resources

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }