An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090201/f5c2abc5/attachment-0001.pl>
Histogram height
3 messages · Jim Lemon, Brendan Cusick
Brendan Cusick wrote:
Hello. I have what I'm sure is a very simple question. Hopefully someone can help. I can't seem to find the maximum height of a histogram. In matlab it would be simple to say max(hist(x, 100)), but this doesn't seem to work in R. Any input would be greatly appreciated.
Hi Brendan, Try: max(hist(x,100)$counts,na.rm=TRUE) Jim
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090201/ae3b454b/attachment-0001.pl>