Re: [R] substitute in graphics - Uwe's help desk

2008-05-11 Thread Uwe Ligges
Gustave Lefou wrote: Hello, I still have my problem. I couldn't make Uwe Ligges's example work. I wonder why :-( The following doesn't work : param.list=list(mu1=0,mu2=0,s1=3,s2=2,s3=2,s4=4) plot(1:8,type="n") text(8,3,adj=1,labels=substitute("with " * mu == bgroup("(",atop(mu1,mu2),")") *

Re: [R] substitute in graphics - Uwe's help desk

2008-05-11 Thread Uwe Ligges
Gustave Lefou wrote: Thank to both of you. I found an interesting document by Uwe Ligges in Rnews December 2002 (Vol 2/3) The following seems encouraging x=seq(1,180,by=1) beta=10 eta=5 plot(x,log(x),type="p",xlab="x",ylab="h(x)",main=substitute("Failure rate " * eta==myeta * "," * beta ,l

Re: [R] substitute in graphics - Uwe's help desk

2008-05-11 Thread Gustave Lefou
Hello, I still have my problem. I couldn't make Uwe Ligges's example work. I wonder why :-( The following doesn't work : param.list=list(mu1=0,mu2=0,s1=3,s2=2,s3=2,s4=4) plot(1:8,type="n") text(8,3,adj=1,labels=substitute("with " * mu == bgroup("(",atop(mu1,mu2),")") * "," * Sigma[x] == bgroup(

Re: [R] substitute in graphics - Uwe's help desk

2008-05-10 Thread Gustave Lefou
Thank to both of you. I found an interesting document by Uwe Ligges in Rnews December 2002 (Vol 2/3) The following seems encouraging x=seq(1,180,by=1) beta=10 eta=5 plot(x,log(x),type="p",xlab="x",ylab="h(x)",main=substitute("Failure rate " * eta==myeta * "," * beta ,list(myeta=eta,mybeta=beta

Re: [R] substitute in graphics

2008-05-09 Thread Henrique Dallazuanna
Try this: plot(x, log(x), xlab = "x", ylab = "h(x)", main = bquote(Failure~rate~from~W(eta == .(eta), beta == .(beta))) On Fri, May 9, 2008 at 11:31 AM, Gustave Lefou <[EMAIL PROTECTED]> wrote: > Hello, > > I have to do a few graphics of the same function and this function is > parame

[R] substitute in graphics

2008-05-09 Thread Gustave Lefou
Hello, I have to do a few graphics of the same function and this function is parametrized by two arguments. What I would like is to be able to change the value of these two arguments without changing the plot command. So as to copy paste. I tried the following : x=1:100 eta=10 beta=5 plot(x,h(x