[R] Default title for hist assumes name is short

Uwe Ligges ligges at statistik.uni-dortmund.de
Sun Jul 27 16:35:54 CEST 2003


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("Histogram of", xname).  Is there an easy
> way of changing the default for main so that it only writes "Histogram
> of" once?
> 
> Thanks, Stepehn

By specifying argument "main", as mentioned in ?hist ?

  hist(apply(cbind( runif(1000), runif(1000)), 1,
    function(x) {sqrt(sum(x^2))}), main="Anything")


Uwe Ligges




More information about the R-help mailing list