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
> 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
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
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
4 matches
Mail list logo