Re: [R] Joining Characters in R {issue with paste}

2009-09-10 Thread Michael Dewey
At 22:13 09/09/2009, Abhishek Pratap wrote: I did try ?paste and paste(a,b,separator=""). same result Your second example pastes three strings together. "a" "b" and " ", the third of which you have named separator which is not the same as sep. Thanks, -Abhi On Wed, Sep 9, 2009 at 5:11 PM,

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread Rolf Turner
On 10/09/2009, at 9:08 AM, Abhishek Pratap wrote: Hi Guys I am want to join to strings in R. I am using paste but not getting desirable result. For the sake of clarity, a quick example: a="Bio" b="iology" paste(a,b) [1] "Bio iology" *There is a SPACE in the word biology which is what I do

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread Clint Bowman
?paste and look at sep. On Wed, 9 Sep 2009, Abhishek Pratap wrote: Hi Guys I am want to join to strings in R. I am using paste but not getting desirable result. For the sake of clarity, a quick example: a="Bio" b="iology" paste(a,b) [1] "Bio iology" *There is a SPACE in the word biology w

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread Abhishek Pratap
tember 09, 2009 4:09 PM > To: r-help@r-project.org > Subject: [R] Joining Characters in R {issue with paste} > > Hi Guys > I am want to join to strings in R. I am using paste but not getting > desirable result. > > For the sake of clarity, a quick example: > > > a="B

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread Abhishek Pratap
I did try ?paste and paste(a,b,separator=""). same result Thanks, -Abhi On Wed, Sep 9, 2009 at 5:11 PM, milton ruser wrote: > You not tryed ?paste :-) > > paste(a,b,sep="") > > bests > > milton > > On Wed, Sep 9, 2009 at 5:08 PM, Abhishek Pratap wrote: > >> Hi Guys >> I am want to join to strin

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread Erik Iverson
t.org] On Behalf Of Abhishek Pratap Sent: Wednesday, September 09, 2009 4:09 PM To: r-help@r-project.org Subject: [R] Joining Characters in R {issue with paste} Hi Guys I am want to join to strings in R. I am using paste but not getting desirable result. For the sake of clarity, a quick example: &

Re: [R] Joining Characters in R {issue with paste}

2009-09-09 Thread milton ruser
You not tryed ?paste :-) paste(a,b,sep="") bests milton On Wed, Sep 9, 2009 at 5:08 PM, Abhishek Pratap wrote: > Hi Guys > I am want to join to strings in R. I am using paste but not getting > desirable result. > > For the sake of clarity, a quick example: > > > a="Bio" > > b="iology" > > pas

[R] Joining Characters in R {issue with paste}

2009-09-09 Thread Abhishek Pratap
Hi Guys I am want to join to strings in R. I am using paste but not getting desirable result. For the sake of clarity, a quick example: > a="Bio" > b="iology" > paste(a,b) [1] "Bio iology" *There is a SPACE in the word biology which is what I dont want * Thanks, -Abhi [[alternative H