Re: [R] main= bquote(paste(Results for , beta, 3, ==.(b1)))) doesn't work.

2006-07-31 Thread Stuart Leask
://www.nottingham.ac.uk/psychiatry/staff/s_leask.html - Original Message - From: Marco Boks [EMAIL PROTECTED] To: r-help@stat.math.ethz.ch Sent: Sunday, July 30, 2006 10:15 PM Subject: [R] main= bquote(paste(Results for , beta, 3,==.(b1 doesn't work. Hi, I need to plot the beta as the symbol

[R] main= bquote(paste(Results for , beta, 3, ==.(b1)))) doesn't work.

2006-07-30 Thread Marco Boks
Hi, I need to plot the beta as the symbol, followed by the index 3 as the title of a graph. This code works main= bquote(paste(Results for , beta ==.(b1)) but I also need the index 3. I tried (simplified): plot(x,y, main= bquote(paste(Results for , beta, 3, ==.(b1 and a few other

Re: [R] main= bquote(paste(Results for , beta, 3, ==.(b1)))) doesn't work.

2006-07-30 Thread Gabor Grothendieck
I assume the 3 is supposed to be a subscript. Try this: b1 - x - y - 1 plot(x,y, main = bquote(Results for ~ beta[3] ==.(b1))) On 7/30/06, Marco Boks [EMAIL PROTECTED] wrote: Hi, I need to plot the beta as the symbol, followed by the index 3 as the title of a graph. This code works

Re: [R] main= bquote(paste(Results for , beta, 3, ==.(b1)))) doesn't work.

2006-07-30 Thread Peter Dalgaard
Marco Boks [EMAIL PROTECTED] writes: Hi, I need to plot the beta as the symbol, followed by the index 3 as the title of a graph. This code works main= bquote(paste(Results for , beta ==.(b1)) but I also need the index 3. I tried (simplified): plot(x,y, main= bquote(paste(Results