Displaying 1 result from an estimated 1 matches for "number_v".
Did you mean:
number_8
2010 Jan 20
1
Greek letters on a multi-line plot title
...symbol for sigma.? Actually I would like the x and y to be subscripts of the lower case Greek symbol, but I suppose that is the next step.? I guess the key is that 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),
??...