2

I've got a se of the mean that is less than the se of the median, what does this tell me about my sampling distr.

Each standard error calculation was used with same sample size.

user137533
  • 21
  • 1
  • *Almost* a duplicate of [For what (symmetric) distributions is sample mean a more efficient estimator than sample median?](http://stats.stackexchange.com/questions/136671/for-what-symmetric-distributions-is-sample-mean-a-more-efficient-estimator-tha). It specifies symmetry, which is useful if we want the sample mean and median to be converging to the same quantity in large samples, given that otherwise it's relatively unlikely to be the case that the two population quantities coincide; the analysis done there would seem to apply here. [The answer is mine, so I'll leave the judgement to others] – Glen_b Nov 06 '16 at 03:31

2 Answers2

2

Both the sample mean and the sample median (for a distribution with a smooth pdf) have a normal distribution for large sample size.

The variance of the sample mean is $\frac{\sigma^2}{n}$

The variance of the sample median is $\frac{1}{4nf(m)^2}$ where $f(m)$ is the probability density function evaluated at the median (source).

So for large sample sizes a comparison between the standard error of the mean and standard error of the median only gives you a comparison between the variance and the pdf evaluated at the median.

Hugh
  • 3,659
  • 16
  • 22
  • Good reasoning--but didn't you intend to conclude that it gives you a comparison between the *variance* and the PDF evaluated at the median? – whuber Nov 05 '16 at 20:22
  • Good spot whuber – Hugh Nov 05 '16 at 20:27
  • That variance of the sample median is an asymptotic result -- it could probably be made clearer in the linked answer. – Glen_b Nov 06 '16 at 03:28
0

As per @Hugh, I do not think it is measure of a distribution's normality.

I think you may want to compare coefficient of variation $\frac{\sigma}{\mu}$ with interquartile ratio $\frac{IQR}{median}$, which only for a normal distribution would be $1.349\frac{\sigma}{\mu}=\frac{IQR}{median}$ or some variation thereof. For example, comparison of standard deviation and IQR forms the basis of a simple test for normality.

Carl
  • 11,532
  • 7
  • 45
  • 102
  • 1
    In your first paragraph you seem to confuse a result that holds only for Normal distributions for a *definition.* See the earlier reply by Hugh or consult http://stats.stackexchange.com/questions/45124/. – whuber Nov 05 '16 at 20:24
  • @whuber OK, got it. – Carl Nov 05 '16 at 20:27