Displaying 2 results from an estimated 2 matches for "hight_mean".
Did you mean:
weight_mean
2009 Jan 21
1
should I use rbind in my example?
...rbind two data frames. Each one has a header . after the rbind I
would like to keep the header for each and have the two data frames
separated by a line. Is this possible to do in R?
For example
weight_mean weight_sd.dev
> F 14.33333 4.932883
> M 34.66667 10.692677
>
> hight_mean hight_sd.dev
> F 35.00000 7.071068
> M 34.66667 10.692677
--
View this message in context: http://www.nabble.com/should-I-use-rbind-in-my-example--tp21585464p21585464.html
Sent from the R help mailing list archive at Nabble.com.
2009 Jan 21
1
problem with rbind
...weight_sd.dev
F 14.33333 4.932883
M 34.66667 10.692677
F 35.00000 7.071068
M 34.66667 10.692677
.
.
.
I want the result to look like this with a line separating each table and
each table has a header
weight_mean weight_sd.dev
F 14.33333 4.932883
M 34.66667 10.692677
hight_mean hight_sd.dev
F 35.00000 7.071068
M 34.66667 10.692677
3.Is there a way to make a title for each table, for example
weight
weight_mean weight_sd.dev
F 14.33333 4.932883
M 34.66667 10.692677
I appreciate your help,
--
View this message in context:...