Re: [R] rotate bar labels in barplot()

2008-04-02 Thread Peter Alspach
#x27; '), 10), las=2) There's a lot in ?par - it is worth studying closely Peter Alspach > -Original Message- > From: [Ricardo Rodriguez] Your XEN ICT Team > [mailto:[EMAIL PROTECTED] > Sent: Thursday, 3 April 2008 2:08 p.m. > To: Peter Alspach; r-help@r-projec

Re: [R] rotate bar labels in barplot()

2008-04-02 Thread [Ricardo Rodriguez] Your XEN ICT Team
Thanks Peter, Peter Alspach wrote: > Ricardo > > The las argument will allow rotation of 90 degrees: > > par(mfrow=c(2,2)) > barplot(1:10, names=letters[1:10], las=0) > barplot(1:10, names=letters[1:10], las=1) > barplot(1:10, names=letters[1:10], las=2) > barplot(1:10, names=letters[1:10], las=3)

Re: [R] rotate bar labels in barplot()

2008-04-02 Thread Peter Alspach
; Subject: [R] rotate bar labels in barplot() > > Hi all, > > It is for sure that I could find more powerful packages to > plot my data, but this simple barplot() was doing well so far. > > My problem now is that I would need to rotate bar labels. > > Please, is this

[R] rotate bar labels in barplot()

2008-04-02 Thread [Ricardo Rodriguez] Your XEN ICT Team
Hi all, It is for sure that I could find more powerful packages to plot my data, but this simple barplot() was doing well so far. My problem now is that I would need to rotate bar labels. Please, is this possible without going to use axis()? I am trying to keep the workflow as simple as possib