codecamp

统计 - 合作效率的变化

变异系数

标准偏差是色散的绝对量度。 当必须在两个系列之间进行比较时,使用称为变异系数的相对测量的分散。

变异系数CV由以下函数定义和给出:

$ {CV = \\ frac {\\ sigma} {X} \\ times 100} $

其中 -

  • $ {CV} $ =变异系数。

  • $ {\\ sigma} $ =标准差。

  • $ {X} $ =平均值。

例子

问题陈述:

从以下数据。 识别风险项目,风险更大:

1 2 3 4 5
项目X(现金利润卢比) 10 15 25 30 55
项目Y(现金利润卢比) 5 20 40 40 30

解决方案:

为了识别风险项目,我们必须确定哪些项目在获得利润方面不一致。 因此,我们计算出变异系数。

X计划 项目y
$ {X} $ $ {X_i - \\ bar X} $
$ {x} $
$ {x ^ 2} $ $ {Y} $ $ {Y_i - \\ bar Y} $
$ {y} $
$ {y ^ 2} $
10 -17 289 5 -22 484
15 -12 144 20 -7 49
25 -2 4 40 13 169
30 3 9 40 13 169
55 28 784 30 3 9
$ {\\ sum X = 135} $   $ {\\ sum x ^ 2 = 1230} $ $ {\\ sum Y = 135} $   $ {\\ sum y ^ 2 = 880} $

专案X

${Here\ \bar X= \frac{\sum X}{N} \\[7pt] = \frac{\sum 135}{5} = 27 \\[7pt] and\ \sigma_x = \sqrt {\frac{\sum X^2}{N}} \\[7pt] \Rightarrow \sigma_x = \sqrt {\frac{1230}{5}} \\[7pt] = \sqrt{246} = 15.68 \\[7pt] \Rightarrow CV_x = \frac{\sigma_x}{X} \times 100 \\[7pt] = \frac{15.68}{27} \times 100 = 58.07}$

专案Y

${Here\ \bar Y= \frac{\sum Y}{N} \\[7pt] = \frac{\sum 135}{5} = 27 \\[7pt] and\ \sigma_y = \sqrt {\frac{\sum Y^2}{N}} \\[7pt] \Rightarrow \sigma_y = \sqrt {\frac{880}{5}} \\[7pt] = \sqrt{176} = 13.26 \\[7pt] \Rightarrow CV_y = \frac{\sigma_y}{Y} \times 100 \\[7pt] = \frac{13.25}{27} \times 100 = 49.11}$

由于项目X的变异系数高于项目Y,因此尽管平均利润相同,但项目X更具风险。


统计 - 超几何分布
统计 - 点图
温馨提示
下载编程狮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; }