Re: [R] how to add a variable to a graph title

2012-07-13 Thread JeffND
Thank you for this useful code! -- View this message in context: http://r.789695.n4.nabble.com/how-to-add-a-variable-to-a-graph-title-tp4636364p4636405.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list h

Re: [R] how to add a variable to a graph title

2012-07-13 Thread mlell08
To use variables in mathematical expressions, bquote can be used: #Term in in .( ) is evaluated plot(1:10,main=bquote(frac(alpha,.(2+2 -- GnuPG Key: 0x7340821E __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEA

Re: [R] how to add a variable to a graph title

2012-07-12 Thread Michael Weylandt
plot(1:5, main = paste0("Figure 1: x=", x)) Michael On Jul 12, 2012, at 3:30 PM, JeffND wrote: > Hi folks, > > To simplify my question, consider an example: > > x=runif(1,0,1) > plot(1:5,1:5) > > Now I want to add a title to the above plot showing the vaue of x, so if the > generated x is 0.

[R] how to add a variable to a graph title

2012-07-12 Thread JeffND
Hi folks, To simplify my question, consider an example: x=runif(1,0,1) plot(1:5,1:5) Now I want to add a title to the above plot showing the vaue of x, so if the generated x is 0.3, graphically the tile should be like "Figure 1: x=0.3". How do I achieve this in R? Thanks. Jeff -- View this me