Re: [R] Problem with rbind.fill

2014-06-02 Thread Bill Bentley
read the rules but forgot to do it) From: Jorge I Velez [mailto:jorgeivanve...@gmail.com] Sent: Sunday, June 01, 2014 10:49 PM To: Bill Bentley Cc: R Help Subject: Re: [R] Problem with rbind.fill Hi Bill, You need require(plyr) ?rbind.fill and then the rest of the code yo

Re: [R] Problem with rbind.fill

2014-06-01 Thread Pascal Oettli
Hello, Yes, but... "rbind.fill" is a function of the "plyr" package. HTH, Pascal On Mon, Jun 2, 2014 at 2:49 AM, Bill Bentley wrote: > The following works as it should... > >> both<-rbind(females,males) > >> both > > workshop gender q1 q2 q3 q4 > > 11 f 1 1 5 1 > > 22

Re: [R] Problem with rbind.fill

2014-06-01 Thread Jorge I Velez
Hi Bill, You need require(plyr) ?rbind.fill and then the rest of the code you already tried. Best, Jorge.- On Mon, Jun 2, 2014 at 3:49 AM, Bill Bentley wrote: > The following works as it should... > > > both<-rbind(females,males) > > > both > > workshop gender q1 q2 q3 q4 > > 11

Re: [R] Problem with rbind.fill

2014-06-01 Thread David Winsemius
On Jun 1, 2014, at 10:49 AM, Bill Bentley wrote: > The following works as it should... > >> both<-rbind(females,males) > >> both > > workshop gender q1 q2 q3 q4 > > 11 f 1 1 5 1 > > 22 f 2 1 4 1 > > 31 f 2 2 4 3 > > 51 m 4

[R] Problem with rbind.fill

2014-06-01 Thread Bill Bentley
The following works as it should... > both<-rbind(females,males) > both workshop gender q1 q2 q3 q4 11 f 1 1 5 1 22 f 2 1 4 1 31 f 2 2 4 3 51 m 4 5 2 4 62 m 5 4 5 5 82 m 4 5 5 5 Next