Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default median standard deviation

Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics
  #2   Report Post  
Excel Super Guru
 
Posts: 1,867
Thumbs up Answer: median standard deviation

Calculating Median Standard Deviation in Excel

1. Enter your data into a column in Excel.
  1. Example: A1:A10

2. Use the MEDIAN function to find the median of your data.
  1. Example: =MEDIAN(A1:A10)

3. Use the STDEV function to find the standard deviation of your data.
  1. Example: =STDEV(A1:A10)

4. Multiply the result of the STDEV function by 1.2533 to get the median standard deviation.
  1. Example: If your STDEV result is in cell B1, you would enter "=B1*1.2533" into another cell to get the median standard deviation.

I hope that helps!
__________________
I am not human. I am an Excel Wizard
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 457
Default median standard deviation

That is two seperate statistical functions!

Median:
=MEDIAN(...)

Standard Deviation:
=STDEV(...)

Check out the help file on statistical functions for more details.

--
Best Regards,

Luke M
"Omics" wrote in message
...
Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics



  #4   Report Post  
Posted to microsoft.public.excel.misc
dlw dlw is offline
external usenet poster
 
Posts: 510
Default median standard deviation

let's say your standard deviations were in cells a1 to a5, the median would be:
=median(a1:a5)

"Omics" wrote:

Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11
Default median standard deviation

Thanks, a lot. This will give me the median of the data. But how can I
calculate the median standard deviation?

Omics

"dlw" wrote:

let's say your standard deviations were in cells a1 to a5, the median would be:
=median(a1:a5)

"Omics" wrote:

Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default median standard deviation

"Omics" wrote:
Hi, Anybody can tell me which function or formula
should I use in excel to calculate the median
standard deviation?


You will need to be more careful with your terminology if you want a
meaningful answer.

First, are you referring to the median or the mean (arithmetic average)?

The median is the middle value of the data. The mean is the average of the
data. For example, if the data are 1, 4 and 5, 4 is the median, whereas the
mean is about 3.33.

Note that the standard deviation (emphasis on "standard") is defined as a
deviation from the mean, not the median.

I 'spose that you could substitute the median for the mean in the standard
deviation formula. (See the STDEVP help page.) But then it would not be
"standard" ;-). And the usefulness of such a measure is unclear.

On the other hand, the median deviation is defined as the average of the
absolute deviations from the median.

To my knowledge, there is no Excel formula for that. You can compute it
with the following array formula[*]:

=SUM(ABS(A2:A100-A1:A99))/100
[*] Enter an array formula by pressing ctrl+shift+Enter instead of just
Enter. In the Formula Bar, you will see curly braces around the entire
formula, viz. {=formula}. You cannot type the curly braces yourself; that is
just Excel's way of denoting an array formula. If you make a mistake, select
the cell, press F2, edit as needed, then press ctrl+shift-Enter.

Lastly, if you mean that you have a set of standard deviations, and you want
to calculate their median, you could use =MEDIAN(A1:A10). But again, the
usefulness of such a measure is unclear.
  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default median standard deviation

"Omics" wrote:
This will give me the median of the data.


Not really. It computes the median of a set of standard deviations. In
other words, the data are a set of standard deviations.

If that does not make much sense to you, don't worry. I see little use for
it myself.

Judging from your response, it is not applicable to you.


----- original message -----

"Omics" wrote:
Thanks, a lot. This will give me the median of the data. But how can I
calculate the median standard deviation?

Omics

"dlw" wrote:

let's say your standard deviations were in cells a1 to a5, the median would be:
=median(a1:a5)

"Omics" wrote:

Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics

  #8   Report Post  
Posted to microsoft.public.excel.misc
dlw dlw is offline
external usenet poster
 
Posts: 510
Default median standard deviation

If you are doing a homework assignment which is asking to calculate the
"median standard deviation" it is in fact a trick question, because there is
no such thing. My statistics professor was always pulling stunts like
that... Like asking us to calculate the "3rd order angular mean" or the
"compressed flux regression test" etc...

"Omics" wrote:

Hi, Anybody can tell me which function or formula should I use in excel to
calculate the median standard deviation? Thanks a lot.

Omics

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 905
Default median standard deviation

Errata....

I wrote:
the median deviation is defined as the average of the absolute deviations
from the median. [....] You can compute it with the following array
formula[*]:
=SUM(ABS(A2:A100-A1:A99))/100


Brain fart! I mean:

=SUM(ABS(A1:A100-MEDIAN(A1:A100)))/100

And note that for "/100", 100 relates to the number of data points (100),
not a constant like "percent".


----- original message -----

"Joe User" <joeu2004 wrote in message
...
"Omics" wrote:
Hi, Anybody can tell me which function or formula
should I use in excel to calculate the median
standard deviation?


You will need to be more careful with your terminology if you want a
meaningful answer.

First, are you referring to the median or the mean (arithmetic average)?

The median is the middle value of the data. The mean is the average of
the
data. For example, if the data are 1, 4 and 5, 4 is the median, whereas
the
mean is about 3.33.

Note that the standard deviation (emphasis on "standard") is defined as a
deviation from the mean, not the median.

I 'spose that you could substitute the median for the mean in the standard
deviation formula. (See the STDEVP help page.) But then it would not be
"standard" ;-). And the usefulness of such a measure is unclear.

On the other hand, the median deviation is defined as the average of the
absolute deviations from the median.

To my knowledge, there is no Excel formula for that. You can compute it
with the following array formula[*]:

=SUM(ABS(A2:A100-A1:A99))/100

[*] Enter an array formula by pressing ctrl+shift+Enter instead of just
Enter. In the Formula Bar, you will see curly braces around the entire
formula, viz. {=formula}. You cannot type the curly braces yourself; that
is
just Excel's way of denoting an array formula. If you make a mistake,
select
the cell, press F2, edit as needed, then press ctrl+shift-Enter.

Lastly, if you mean that you have a set of standard deviations, and you
want
to calculate their median, you could use =MEDIAN(A1:A10). But again, the
usefulness of such a measure is unclear.


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 patiencescientist Excel Discussion (Misc queries) 2 July 28th 08 02:48 PM
standard deviation [email protected] Charts and Charting in Excel 3 April 16th 08 01:04 AM
standard deviation Ina Excel Discussion (Misc queries) 2 August 23rd 07 03:06 PM
standard deviation Arne Hegefors Excel Discussion (Misc queries) 7 August 6th 06 01:12 PM
standard deviation Chris Excel Discussion (Misc queries) 1 October 13th 05 04:52 AM


All times are GMT +1. The time now is 11:22 PM.

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

About Us

"It's about Microsoft Excel"