Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35
Default Standard Deviation from Goal, NOT Mean

I've been asked to determine what the standard deviation is from a goal for
52 values. I know that technically speaking, standard deviation is from the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?
Thank you.
Victoria
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Standard Deviation from Goal, NOT Mean

If I have numbers 3,4,5,6 and a goal of 4
I need to find (3-4)^2, (4-4)^2, (5-4)^2, and (6-4)^2
Then I sum these values
Next I divide by 3 (there are four numbers, so I divide by N-1 (this is for
a sample std dev, for a population deviation divide by N)
Finally I find the square root of the result.
A1 4 (goal)
A2 3 B2 =(A2-$A$1)^2
A3 4 B3 =(A3-$A$1)^2
.....
=SQRT(SUM(B2:B54)/(COUNT(B4:B54)-1))

If you want to avoid the B column, I expect we could come up with a
SUMPRODUCT formula.
Any help?
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Victoria" wrote in message
...
I've been asked to determine what the standard deviation is from a goal
for
52 values. I know that technically speaking, standard deviation is from
the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?
Thank you.
Victoria



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35
Default Standard Deviation from Goal, NOT Mean

VERY Helpful!! Thanks.

"Bernard Liengme" wrote:

If I have numbers 3,4,5,6 and a goal of 4
I need to find (3-4)^2, (4-4)^2, (5-4)^2, and (6-4)^2
Then I sum these values
Next I divide by 3 (there are four numbers, so I divide by N-1 (this is for
a sample std dev, for a population deviation divide by N)
Finally I find the square root of the result.
A1 4 (goal)
A2 3 B2 =(A2-$A$1)^2
A3 4 B3 =(A3-$A$1)^2
.....
=SQRT(SUM(B2:B54)/(COUNT(B4:B54)-1))

If you want to avoid the B column, I expect we could come up with a
SUMPRODUCT formula.
Any help?
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Victoria" wrote in message
...
I've been asked to determine what the standard deviation is from a goal
for
52 values. I know that technically speaking, standard deviation is from
the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?
Thank you.
Victoria




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 837
Default Standard Deviation from Goal, NOT Mean

I think you meant
=SQRT(SUM(B2:B54)/COUNT(B4:B54)

The goal is presumably known external to the data, and hence you do not lose
a degree of freedom for estimating the mean.

Jerry

"Bernard Liengme" wrote:

If I have numbers 3,4,5,6 and a goal of 4
I need to find (3-4)^2, (4-4)^2, (5-4)^2, and (6-4)^2
Then I sum these values
Next I divide by 3 (there are four numbers, so I divide by N-1 (this is for
a sample std dev, for a population deviation divide by N)
Finally I find the square root of the result.
A1 4 (goal)
A2 3 B2 =(A2-$A$1)^2
A3 4 B3 =(A3-$A$1)^2
.....
=SQRT(SUM(B2:B54)/(COUNT(B4:B54)-1))

If you want to avoid the B column, I expect we could come up with a
SUMPRODUCT formula.
Any help?
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Victoria" wrote in message
...
I've been asked to determine what the standard deviation is from a goal
for
52 values. I know that technically speaking, standard deviation is from
the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?
Thank you.
Victoria




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,059
Default Standard Deviation from Goal, NOT Mean

On May 3, 6:37 am, Victoria
wrote:
I've been asked to determine what the standard deviation is from a goal for
52 values. I know that technically speaking, standard deviation is from the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?


You are correct that Excel's STDEV and STDEVP functions only compute
the standard deviation from the mean. But the standard deviation per
se is merely a formula -- a measure of dispersion from any "center",
not just the mean. So if you look at the formula on the STDEVP help
page and substitute "g" (goal) where you see "x-hat" (mean), that is
the formula to use for any standard deviation.

If your 52 values are in A1:A52 and your goal is in B1, the following
is one way to compute the standard deviation:

=sqrt(sumproduct((A1:A52-B1)^2) / count(A1:A52))

Of course, you could simply use the number 52 instead of
count(A1:A52). I prefer the latter because it adjusts the count
automatically if I insert some more numbers into the range. I use
SUMPRODUCT simply to avoid using an array formula if I had used SUM.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 837
Default Standard Deviation from Goal, NOT Mean

In standard terminology, this is the "root mean squared error" (RMSE)
http://en.wikipedia.org/wiki/Mean_squared_error

A useful way to think about and calculate this quantity is
=SQRT(VARP(data)+(AVERAGE(data)-goal)^2)

Jerry

"Victoria" wrote:

I've been asked to determine what the standard deviation is from a goal for
52 values. I know that technically speaking, standard deviation is from the
mean however I need to calculate it from the goal. Is there a formula or
string of formulas I can use?
Thank you.
Victoria

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
standard deviation ckatz Excel Worksheet Functions 1 October 25th 06 08:31 PM
standard deviation Arne Hegefors Excel Discussion (Misc queries) 7 August 6th 06 01:12 PM
Standard Deviation Stan Banner Excel Worksheet Functions 1 March 12th 06 12:54 AM
Standard Deviation Stan Banner Excel Worksheet Functions 1 March 11th 06 09:11 PM
standard deviation Chris Excel Discussion (Misc queries) 1 October 13th 05 04:52 AM


All times are GMT +1. The time now is 10:12 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"