Re: [R] multi-histogram plotting

2012-03-14 Thread R. Michael Weylandt
It's easier to do log plots as plot(h$density, log = L) where L is one of x, y, or xy as you choose. This is well documented. Michael On Wed, Mar 14, 2012 at 12:02 AM, Sam Steingold s...@gnu.org wrote: * David Winsemius qjvafrz...@pbzpnfg.arg [2012-03-13 17:53:14 -0400]: On Mar 13, 2012, at

[R] multi-histogram plotting

2012-03-13 Thread Sam Steingold
I have a vector x: table(x) 2 3 4 5 6 7 8 91011121314 45547 11835 4692 2241 1386 820 593 425 298 239 176 158 115 15161718192021222324252627 9488766747

Re: [R] multi-histogram plotting

2012-03-13 Thread David Winsemius
On Mar 13, 2012, at 5:33 PM, Sam Steingold wrote: I have a vector x: table(x) 2 3 4 5 6 7 8 9101112 1314 45547 11835 4692 2241 1386 820 593 425 298 239 176 158 115 151617181920212223

Re: [R] multi-histogram plotting

2012-03-13 Thread Sam Steingold
* David Winsemius qjvafrz...@pbzpnfg.arg [2012-03-13 17:53:14 -0400]: On Mar 13, 2012, at 5:33 PM, Sam Steingold wrote: I can, of course, plot log(h$density), but then the number labels will be wrong. You could try apply a log transform to the appropriate component of the h object and using