Re: [R] long command line cut in 2 parts

2010-05-13 Thread arnaud Gaboury
Removing the + sign resolves the problem. TY > -Original Message- > From: Muhammad Rahiz [mailto:muhammad.ra...@ouce.ox.ac.uk] > Sent: Thursday, May 13, 2010 3:15 PM > To: arnaud Gaboury > Cc: r-help@r-project.org > Subject: Re: [R] long command line cut in 2 part

Re: [R] long command line cut in 2 parts

2010-05-13 Thread Muhammad Rahiz
Dear Arnaud, Wrap a pair of curly brackets around the command line and remove the "+" like the following; zz<-{merge(transform(merge(value,allcon,all.y=T),SHORTDESCRIPTION=NULL, VALUE=NULL,PL=-VALUE*pl,quantity=NULL),PosB,all.x=T,sort=F )} Muhammad arnaud Gaboury wrote: Dear group, I have

Re: [R] long command line cut in 2 parts

2010-05-13 Thread Henrique Dallazuanna
Remove the plus sign. On Thu, May 13, 2010 at 9:54 AM, arnaud Gaboury wrote: > Dear group, > > I have this command line in a function: > > > zz<-merge(transform(merge(value,allcon,all.y=T),SHORTDESCRIPTION=NULL,VALUE= > NULL,PL=-VALUE*pl,quantity=NULL),PosB,all.x=T,sort=F) > > I want to cut it in

[R] long command line cut in 2 parts

2010-05-13 Thread arnaud Gaboury
Dear group, I have this command line in a function: zz<-merge(transform(merge(value,allcon,all.y=T),SHORTDESCRIPTION=NULL,VALUE= NULL,PL=-VALUE*pl,quantity=NULL),PosB,all.x=T,sort=F) I want to cut it in 2 lines (just for convenient purpose). Here is what I did : zz<-merge(transform(merge(value