Re: [R] Combining two variables in text

2010-09-28 Thread Greg Snow
ng > Sent: Tuesday, September 28, 2010 5:25 AM > To: r-help@r-project.org > Subject: Re: [R] Combining two variables in text > > trb1 [Tue, Sep 28, 2010 at 12:12:01PM > CEST]: > [...] > > Also, how can I combine several variables in text > > i.e. suppose I have &

Re: [R] Combining two variables in text

2010-09-28 Thread Johannes Huesing
trb1 [Tue, Sep 28, 2010 at 12:12:01PM CEST]: [...] > Also, how can I combine several variables in text > i.e. suppose I have > a <- "one" > b <- "two" > then what expression can I place in > title(main=...) > in terms of a and b to give an output title of > "one, two" > i.e. a then b separated

Re: [R] Combining two variables in text

2010-09-28 Thread Dimitris Rizopoulos
try this: a <- "one" b <- "two" paste(a, b, sep = ", ") I hope it helps. Best, Dimitris On 9/28/2010 12:12 PM, trb1 wrote: Hi all, how can I manually create a data.frame or similar object to display in a textplot, that omits column and row numbers/headings? Also, how can I combine sever

Re: [R] Combining two variables in text

2010-09-28 Thread trb1
In the date.frame/ text plot, would it be possible to change the font size of one of the lines? Thanks -- View this message in context: http://r.789695.n4.nabble.com/Combining-two-variables-in-text-tp2716916p2716931.html Sent from the R help mailing list archive at Nabble.com. _

[R] Combining two variables in text

2010-09-28 Thread trb1
Hi all, how can I manually create a data.frame or similar object to display in a textplot, that omits column and row numbers/headings? Also, how can I combine several variables in text i.e. suppose I have a <- "one" b <- "two" then what expression can I place in title(main=...) in terms of a