Displaying 1 result from an estimated 1 matches for "the_expression".
2010 Jan 20
1
Greek letters on a multi-line plot title
...at I would like to maintain the multiple line title while having the Greek letters.?
?
Thanks again for any feedback. and insights.
?
?
?
number_vals<-100
x<-rnorm(number_vals)
y<-rnorm(number_vals)
plot(1, 1,
???? xlim= c(min(x), max(x)),
???? ylim= c(min(y), max(y)), col=0)
points(x, y)
the_expression<-paste("Plotting y vs. x",
????????????????????? "\n sigma x = ", format(sd(x), digits=4, scientific=F),
????????????????????? "\n sigma y = ", format(sd(y), digits=4, scientific=F),? sep="")
?????????????????????
title(the_expression)
grid()
?
?
?
Oh...