Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I've used a wide array of tests for my thesis data, from parametric ANOVAs and t-tests to non-parametric Kruskal-Wallis tests and Mann-Whitneys, as well as rank-transformed 2-way ANOVAs, and GzLMs with binary, poisson and proportional data. Now I need to report everything as I write all of this up in my results.

I've already asked here how to report asymmetrical confidence intervals for proportion data. I know that standard deviation, standard error or confidence intervals are appropriate for means, which is what I'd report if all my tests were nicely parametric. However, for my non-parametric tests, should I be reporting medians and not means? If so, what error would I report with it?

Associated with this is how best to present non-parametric test results graphically. Since I largely have continuous or interval data within categories, I'm generally using bar graphs, with the top of the bar being the mean and error bars showing 95% CI. For NP tests, can I still use bar graphs, but have the top of the bar represent the median?

Thanks for your suggestions!

share|improve this question
Something doesn't compute. How can you have means or medians or CIs with categorical data? – rolando2 Jun 3 '11 at 0:40
Sorry that wasn't clear @rolando2...I have categories in which I have continuous or interval data (original question was edited to clarify now). – Mog Jun 3 '11 at 0:51

1 Answer

up vote 4 down vote accepted

You can report a confidence interval for the median. In R, you can use wilcox.test with the argument conf.int=TRUE. There's a tiny discussion of this in John Verzani's simpleR notes: see here.

Regarding plots: I don't really like using bar plots even for representing a set of means. I'd prefer to just plot little line segments for the CI: bar plots improved

The plot on the right was made with errbar() from the Hmisc package [CRAN page].

You could make the same sort of plot for the medians and the related confidence intervals, or you could use box plots (which, in the same amount of space, describe the entire distribution).

share|improve this answer
Thanks for the tips Karl! Is there a particular reason you don't like bars, or is it personal preference? – Mog Sep 1 '11 at 17:56
1  
@Mog: The bars seem a waste of ink/space; they force you to include 0 on the y-axis, which is often not necessary; and they prevent you from showing the lower halves of the intervals. The bars could be made worse (eg with gratuitous 3d). With small datasets, I prefer to show the actual data points. – Karl Sep 2 '11 at 2:18
Thanks Karl, good to know! – Mog Sep 7 '11 at 20:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.