> 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

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to