[R] Median computation

Petr Savicky savicky at cs.cas.cz
Tue May 22 23:05:42 CEST 2012


On Tue, May 22, 2012 at 01:34:45PM -0600, Preeti wrote:
> Hi,
> 
> I have a 250,000 by 300 matrix. I am trying to calculate the median of
> those columns (by row) with column names that are identical. I would like
> this to be efficient since apply(x,1,median) where x is created by choosing
> only those columns with same column name and looping on this is taking a
> really long time. Is there an efficient way to do this?

Hi.

Can you send a simple example of what you want to compute?

The 300 medians of the 300 columns, each of length 250'000,
may be computed using apply(x,2,median) and this does not
take much time. What do you mean by "choosing only those
columns with same column name"?

Petr Savicky.



More information about the R-help mailing list