Re: [R] Orientation of labels on axes

2008-01-08 Thread Jim Lemon
mika03 wrote: > http://www.nabble.com/file/p14664173/at-modality.png > > > I created the above image with R and I have one problem left: > > Some of the labels of the axes do not show up, probably because there's not > enough space. > > > I use the following code to create the plot: > modalit

Re: [R] Orientation of labels on axes

2008-01-07 Thread John Kane
Have a look at ?staxlab library(plotrix)or http://cran.r-project.org/doc/FAQ/R-FAQ.html#How-can-I-create-rotated-axis-labels_003f --- mika03 <[EMAIL PROTECTED]> wrote: > > http://www.nabble.com/file/p14664173/at-modality.png > > > > I created the above image with R and I have one > problem l

Re: [R] Orientation of labels on axes

2008-01-07 Thread Richard . Cotton
> http://www.nabble.com/file/p14664173/at-modality.png > > > I created the above image with R and I have one problem left: > > Some of the labels of the axes do not show up, probably because there's not > enough space. Try par(las=1) then draw the plot plot(length, col=colour) Regards, Rich

Re: [R] Orientation of labels on axes

2008-01-07 Thread Albert Greinoecker
Hi Michael, a solution would be not to draw axes directly, but afterwards with the axis-command: plot(length, col=color, axes=F) axis(2,at=, labels=, cex.axis=0.6, las=1); # left axis axis(1,at=, labels=, cex.axis=0.6, las=1); # bottom axis cex.axis...relativefont size las...text orientation se

[R] Orientation of labels on axes

2008-01-07 Thread mika03
http://www.nabble.com/file/p14664173/at-modality.png I created the above image with R and I have one problem left: Some of the labels of the axes do not show up, probably because there's not enough space. I use the following code to create the plot: modality <- read.table("results.table", he