[R] looking for setdiff equivalent on dataset

2010-07-29 Thread BaKaLeGuM
Hi everybody ! little question. I have 2 dataset TheLittleOne<-data.frame(cbind(c(2,3),c(2,3))) TheBigOne<-data.frame(cbind(c(1,1,2),c(1,1,2))) And I would like to obtain the TheBigOne - TheLittleOne (the row in TheBigOne not in TheLittleOne The result should be: cbind(c(1,1),c(1,1)) Have yo

Re: [R] looking for setdiff equivalent on dataset

2010-07-29 Thread BaKaLeGuM
> keys <- plyr:::join.keys(TheBigOne, TheLittleOne) > > !(keys$x %in% keys$y) > > TheBigOne[!(keys$x %in% keys$y), ] > > Hadley > > On Thu, Jul 29, 2010 at 1:38 PM, BaKaLeGuM wrote: > > Hi everybody ! > > > > little question. > > > > I have 2 da

[R] full screen graph, and close x11

2009-03-11 Thread BaKaLeGuM
Hi everybody! I'm looking for a function or option to make a full screen plot.. can you help me? and I would like to know if it's possible to automaticaly close a x11 windows.. because i have more than 100 graph to generate and what i want is: 1 - make a full screen graph 2 - save this plot in

Re: [R] full screen graph, and close x11

2009-03-15 Thread BaKaLeGuM
e > There is no need to show all 100+ graphs on your display if you actually > want them in files. > hth. > > BaKaLeGuM schrieb: > >> Hi everybody! >> >> I'm looking for a function or option to make a full screen plot.. can you >> help me? >> and