Re: [R] Default title for hist assumes name is short

2003-07-27 Thread Spencer Graves
Did you try: hist(apply(cbind( runif(1000), runif(1000)), 1, function(x) {sqrt(sum(x^2))}), main="adsf") This worked for me in both S-Plus 6.1 and R 1.7.1. hope this helps. spencer graves Stephen Eglen wrote: On the following plot: hist(apply(cbind( runif(1000), runif(1000)), 1, function(x)

Re: [R] Default title for hist assumes name is short

2003-07-27 Thread Uwe Ligges
Stephen Eglen wrote: On the following plot: hist(apply(cbind( runif(1000), runif(1000)), 1, function(x) {sqrt(sum(x^2))})) the title is three lines long and so has "Histogram of " at the start of each line of the title. This is because the definition of main in hist.default is main = paste("Hi

[R] Default title for hist assumes name is short

2003-07-27 Thread Stephen Eglen
On the following plot: hist(apply(cbind( runif(1000), runif(1000)), 1, function(x) {sqrt(sum(x^2))})) the title is three lines long and so has "Histogram of " at the start of each line of the title. This is because the definition of main in hist.default is main = paste("Histogram of", xname).