[R] How to change labels in a histogram
    Philipp Pagel 
    p.pagel at wzw.tum.de
       
    Tue Jul  8 10:24:27 CEST 2008
    
    
  
> I am trying to add a percent sign to my labels in a hist() plot. "labels =
> TRUE" gives me the values, but I don't know how to add the percent sign. I
> would prefer to annote the plot after drawing it, e.g. using text()
This is probably a good starting point:
x <-  rnorm(100)
h <- hist(x)
text(h$mids, h$counts+0.5, paste(format(h$counts/sum(h$counts) * 100, digits=2), "%") )
cu
	Philipp
-- 
Dr. Philipp Pagel
Lehrstuhl für Genomorientierte Bioinformatik
Technische Universität München
Wissenschaftszentrum Weihenstephan
85350 Freising, Germany
http://mips.gsf.de/staff/pagel
    
    
More information about the R-help
mailing list