Re: [R] To big characters in barplot

2006-10-24 Thread David Barron
Use the option cex.names. For example: tN - table(Ni - rpois(100, lambda=5)) barplot(tN, col=rainbow(20)) barplot(tN, col=rainbow(20), cex.names=.6) On 24/10/06, David Graf [EMAIL PROTECTED] wrote: Hi everybody! The characters under the bars in my barplot are to big, so I can't see

Re: [R] To big characters in barplot

2006-10-24 Thread Stuart Robinson
One possibility is to set the value for the option cex.names to a value less than 1 when you call barplot(). For example, contrast the size of the words 'one', 'two', etc. in b1 and b2. v - c('one','two','three','four','five') t - table(v) b1 - barplot(t) b1 b2 - barplot(t, cex.names=0.5)