[R] numerical summaries across variables.

2009-09-01 Thread rajclinasia
Hi Every one, I have a dataframe class with name, sex, age, height, Weight. if i caluclate summary statistics with the below code numSummary(class[,c(Height, Weight)], groups=class$Name, statistics=c(mean, sd, quantiles), quantiles=c(0, .25,.5,.75,1)) iam getting output like this Variable:

Re: [R] numerical summaries across variables.

2009-09-01 Thread milton ruser
Hi here, may be you can play with reshape, or may be aggregate and reshape... good luck milton On Tue, Sep 1, 2009 at 2:17 AM, rajclinasia r...@clinasia.com wrote: Hi Every one, I have a dataframe class with name, sex, age, height, Weight. if i caluclate summary statistics with the below

Re: [R] numerical summaries across variables.

2009-09-01 Thread Jim Lemon
rajclinasia wrote: Hi Every one, I have a dataframe class with name, sex, age, height, Weight. if i caluclate summary statistics with the below code numSummary(class[,c(Height, Weight)], groups=class$Name, statistics=c(mean, sd, quantiles), quantiles=c(0, .25,.5,.75,1)) iam getting output