codecamp

统计 - 均值差异

平均差异(更准确地说,“平均值差异")是测量临床试验中两组的平均值之间的绝对差异的标准统计量。 它估计与对照相比,实验干预平均改变结果的量。

$ {Mean \\ Difference = \\ frac {\\ sum x_1} {n} - \\ frac {\\ sum x_2} {n}} $

其中 -

  • $ {x_1} $ =第一组的平均值

  • $ {x_2} $ =第二组的平均值

  • $ {n} $ =样本大小

例子

问题陈述:

有2个舞蹈团,其数据列在下面。 找出这些舞蹈团的平均差异。

第1组 3 9 5 7
第2组 5 3 4 4

解决方案:

$ {\\ sum x_1 = 3 + 9 + 5 + 7 = 24 \\\\ [7pt]
\\ sum x_2 = 5 + 3 + 4 + 4 = 16 \\\\ [7pt]
M_1 = \\ frac {\\ sum x_1} {n} = \\ frac {24} {4} = 6 \\\\ [7pt]
M_2 = \\ frac {\\ sum x_2} {n} = \\ frac {16} {4} = 4 \\\\ [7pt]
平均差= 6-4 = 2} $


统计 - 泊松分布
统计 - 合并方差(R)
温馨提示
下载编程狮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; }