Re: [R] unable to force the vector format

2005-12-14 Thread Petr Pikal
Hi is colMeans(your.df) what you want? BTW searching column mean in CRAN gives me the answer on first hit HTH Petr On 14 Dec 2005 at 22:12, Charles Plessy wrote: Date sent: Wed, 14 Dec 2005 22:12:16 +0900 From: Charles Plessy <[EMAIL PROTECTED]> To:

Re: [R] unable to force the vector format

2005-12-14 Thread jim holtman
Not too sure what you want the means of, but try ?colMeans ?rowMeans On 12/14/05, Charles Plessy <[EMAIL PROTECTED]> wrote: > > Dear all, > > I am so ashamed to pollute the list with a trivial question, but it is a > long time I have not used R, and I need a result in the next one or two > hour.

Re: [R] unable to force the vector format

2005-12-14 Thread Ido M. Tamir
> slides <- read.table("slides.txt") > slides [1:5,] V1V2 V3 V4 V5 V6 V7 V8 1 PLB00090AA02 0.147 0.018 0.046 0.064 -0.018 -0.008 -0.063 2 PLB00090BC08 0.171 0.011 -0.001 0.009 0.052 0.032 -0.065 3 PLB00090CG02 0.029 -0.014 -0.042 0.006 0.024 -0.009

Re: [R] unable to force the vector format

2005-12-14 Thread Charles Plessy
On Wed, Dec 14, 2005 at 02:46:35PM +0100, Petr Pikal wrote : > Hi > > is > colMeans(your.df) > > what you want? > > BTW > > searching column mean in CRAN gives me the answer on first hit Thank you all so much for all the answers I got. rowMeans is what I needed. I will bookmark the search pa