Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
Thank you again David for the thoughtful comments on plotmath. Really appreciated. John - Original Message From: David Winsemius To: array chip Cc: Peter Ehlers ; R Sent: Tue, June 28, 2011 12:20:49 PM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 201

Re: [R] how to print "<=" in plot title

2011-06-28 Thread David Winsemius
construct the arguments so that infix operations have flanking operands and notice that the plotmath paste function has no sep argument. John - Original Message From: David Winsemius To: array chip Cc: Peter Ehlers ; R Sent: Tue, June 28, 2011 11:50:02 AM Subject: Re: [R] how to

Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
11:50:02 AM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 2011, at 2:42 PM, array chip wrote: > David, > > I tried your suggestion, still not working: > > x<-3 > plot(1:10) > title(bquote(bold(x) <= bold(as.character(.(x)) ))) > > >

Re: [R] how to print "<=" in plot title

2011-06-28 Thread David Winsemius
gain! John - Original Message From: David Winsemius To: Peter Ehlers Cc: array chip ; R Sent: Tue, June 28, 2011 11:04:07 AM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 2011, at 1:52 PM, Peter Ehlers wrote: On 2011-06-28 10:25, array chip wrote: Hi, how

Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
011 11:30:23 AM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 2011, at 2:19 PM, array chip wrote: > Thank you David and Bert. > > x<-3plot(1:10) > title(bquote( x <= .(x) )) > > would do what I want. But I also want the title printed in bold fon

Re: [R] how to print "<=" in plot title

2011-06-28 Thread David Winsemius
m: David Winsemius To: Peter Ehlers Cc: array chip ; R Sent: Tue, June 28, 2011 11:04:07 AM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 2011, at 1:52 PM, Peter Ehlers wrote: On 2011-06-28 10:25, array chip wrote: Hi, how can I print "<=" (I mean the sym

Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
(from variable x) in bold. Anyway to solve that? Thanks again! John - Original Message From: David Winsemius To: Peter Ehlers Cc: array chip ; R Sent: Tue, June 28, 2011 11:04:07 AM Subject: Re: [R] how to print "<=" in plot title On Jun 28, 2011, at 1:52 PM, Peter E

Re: [R] how to print "<=" in plot title

2011-06-28 Thread Bert Gunter
ray chip wrote: > Thank Peter! How do I make the title in bold font? > > John > > > > - Original Message > From: Peter Ehlers > To: array chip > Cc: R > Sent: Tue, June 28, 2011 10:52:07 AM > Subject: Re: [R] how to print "<=" in plot title &

Re: [R] how to print "<=" in plot title

2011-06-28 Thread David Winsemius
On Jun 28, 2011, at 1:52 PM, Peter Ehlers wrote: On 2011-06-28 10:25, array chip wrote: Hi, how can I print "<=" (I mean the symbol of just one character) in the main title of a plot? for example: plot(1:10, main=paste("x<=", x)) where variable x is some number generated on the fly. x

Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
Thank Peter! How do I make the title in bold font? John - Original Message From: Peter Ehlers To: array chip Cc: R Sent: Tue, June 28, 2011 10:52:07 AM Subject: Re: [R] how to print "<=" in plot title On 2011-06-28 10:25, array chip wrote: > Hi, how can I print

Re: [R] how to print "<=" in plot title

2011-06-28 Thread Peter Ehlers
On 2011-06-28 10:25, array chip wrote: Hi, how can I print "<=" (I mean the symbol of just one character) in the main title of a plot? for example: plot(1:10, main=paste("x<=", x)) where variable x is some number generated on the fly. x <- 2.718 plot(0, 0) title(bquote( x %<=% .(x) ))

Re: [R] how to print "<=" in plot title

2011-06-28 Thread array chip
] cluster_1.13.3 grid_2.12.2 lattice_0.19-17 tools_2.12.2 - Original Message From: Bert Gunter To: array chip Cc: R Sent: Tue, June 28, 2011 10:32:29 AM Subject: Re: [R] how to print "<=" in plot title This is highly system dependent: what "character" d

Re: [R] how to print "<=" in plot title

2011-06-28 Thread Bert Gunter
This is highly system dependent: what "character" do you intend to use for this 2 character representation? Hence, you need to follow the posting guide and give the "at a minimum" system info. ?sessionInfo -- Bert On Tue, Jun 28, 2011 at 10:25 AM, array chip wrote: > Hi, how can I print "<=" (I

[R] how to print "<=" in plot title

2011-06-28 Thread array chip
Hi, how can I print "<=" (I mean the symbol of just one character) in the main title of a plot? for example: plot(1:10, main=paste("x <=", x)) where variable x is some number generated on the fly. Thanks John __ R-help@r-project.org mailing list ht