Re: [R] Using bquote: question

2008-01-24 Thread Prof Brian Ripley
---Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Schools Statistics Poster Competition > Sent: Thursday, January 24, 2008 5:58 PM > To: R-help mailing list > Subject: [R] Using bquote: question > > Hi all > > Observe: > > x <

Re: [R] Using bquote: question

2008-01-24 Thread Deepayan Sarkar
",phi==.(phi) -Deepayan > -- Bert Gunter > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > Behalf Of Schools Statistics Poster Competition > Sent: Thursday, January 24, 2008 5:58 PM > To: R-help mailing list > Subject: [R] Using

Re: [R] Using bquote: question

2008-01-24 Thread Bert Gunter
ubject: [R] Using bquote: question Hi all Observe: x <- c(1,2) y <- c(1,-1) phi <- 1 p <- 2 par( mfrow=c(1,2)) plot(x , y, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) plot(y ~ x, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) par( mfrow=c(1,2)) On my

Re: [R] Using bquote: question

2008-01-24 Thread Bert Gunter
ort. Cheers, Bert Gunter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Schools Statistics Poster Competition Sent: Thursday, January 24, 2008 5:58 PM To: R-help mailing list Subject: [R] Using bquote: question Hi all Observe: x <- c(1,2) y <- c(

[R] Using bquote: question

2008-01-24 Thread Schools Statistics Poster Competition
Hi all Observe: x <- c(1,2) y <- c(1,-1) phi <- 1 p <- 2 par( mfrow=c(1,2)) plot(x , y, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) plot(y ~ x, main=bquote( paste( p==.(p)," and ",phi==.(phi)) ) ) par( mfrow=c(1,2)) On my system (details below), the first plot is correct (in my unde