codecamp

Statistics - Arithmetic Mode of Discrete Series

当数据与其频率一起给出时。 下面是离散系列的例子:

项目 5 10 20 30 40 50 60 70
频率 2 5 1 3 12 0 5 7

在离散系列中,算术模式可以通过检查和查找具有最高频率的变量来确定。 然而,当最大频率和其之前或之后的频率之间存在非常小的差时,使用分组表方法。

例子

问题陈述:

计算以下离散数据的算术模式:

项目 14 36 45 70 105 145
频率 2 5 1 3 12 0

解决方案:

给定数字的算术模式为105作为最高频率,12与105相关联。


Statistics - Arithmetic Mode of Individual Series
Statistics - Mean Deviation of Continuous 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; }