Re: [R] axis labels in multiple plots

2007-06-20 Thread Greg Snow
] axis labels in multiple plots Hi, I'am trying to make a multiple bar plot over a map and I'm having difficulties with the distance between axes labels and the axis. Trying to control this with mgp does not help because it controls both axes simultaneously. For example, with default values

Re: [R] axis labels in multiple plots

2007-06-20 Thread Héctor Villalobos
(and that the pasted code is readable), From: [EMAIL PROTECTED] on behalf of Héctor Villalobos Sent: Tue 6/19/2007 2:31 PM To: r-help@stat.math.ethz.ch Subject: [R] axis labels in multiple plots Hi, I'am trying to make a multiple bar plot over a map and I'm having difficulties with the distance

[R] axis labels in multiple plots

2007-06-19 Thread Héctor Villalobos
Hi, I'am trying to make a multiple bar plot over a map and I'm having difficulties with the distance between axes labels and the axis. Trying to control this with mgp does not help because it controls both axes simultaneously. For example, with default values (mgp = c(3, 1, 0)) y-axis labels

Re: [R] axis labels in multiple plots

2007-06-19 Thread Marc Schwartz
On Tue, 2007-06-19 at 14:31 -0600, Héctor Villalobos wrote: Hi, I'am trying to make a multiple bar plot over a map and I'm having difficulties with the distance between axes labels and the axis. Trying to control this with mgp does not help because it controls both axes simultaneously.

[R] axis labels at subset of tick marks

2007-01-10 Thread Darren Weber
For example, this works: x = seq(-100, 1000, 25) y = x * x plot(x,y, xaxt=n) axis(1,x,FALSE,tcl=-0.3) axis(1,x[x %% 100 ==0]) It creates two axis objects and the values of the x-axis are the labels. The following scenario is more difficult, because it uses 'image' to plot a grid of values: a =

Re: [R] axis labels title not visible

2006-11-02 Thread Uwe Ligges
J Greenbaum wrote: Dear all, I recently upgraded to R-2.4.0 and have had some difficulties with axis labels. When I create a plot on the X11 display, the labels (including the title) are not visible. However, if I execute the exact same command on the pdf display, the labels are

Re: [R] axis labels title not visible

2006-11-02 Thread J Greenbaum
No, I haven't changed anything like that. I did recently change my xorg.conf file to get the fglrx driver running and I have a feeling that has something to do with it, since I can login from another PC and issue plot commands that result in graphs w/ axes. I will try reverting to my old

Re: [R] axis labels title not visible

2006-11-02 Thread J Greenbaum
Replacing my xorg.conf file didn't work either. Any more ideas? Thanks! -Jay On 11/2/06, J Greenbaum [EMAIL PROTECTED] wrote: No, I haven't changed anything like that. I did recently change my xorg.conf file to get the fglrx driver running and I have a feeling that has something to do

[R] axis labels title not visible

2006-11-01 Thread J Greenbaum
Dear all, I recently upgraded to R-2.4.0 and have had some difficulties with axis labels. When I create a plot on the X11 display, the labels (including the title) are not visible. However, if I execute the exact same command on the pdf display, the labels are printed. I've tried explicitly

[R] Axis labels

2006-05-02 Thread Christopher Brown
I cannot find a way to apply custom axis tick label text. Is there a way? __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Re: [R] Axis labels

2006-05-02 Thread bogdan romocea
plot(1:10,axes=FALSE) axis(1,at=1:10,labels=10:1) axis(2,at=1:10,labels=5*10:1) box() -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Brown Sent: Tuesday, May 02, 2006 12:13 PM To: r-help@stat.math.ethz.ch Subject: [R] Axis labels I

Re: [R] Axis labels

2006-05-02 Thread Christopher Brown
bogdan romocea wrote: plot(1:10,axes=FALSE) axis(1,at=1:10,labels=10:1) axis(2,at=1:10,labels=5*10:1) box() Thanks. __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide!

[R] axis labels vertically

2005-06-17 Thread BoM DS
Hi, I have a plot and a custom axis labeling, e.g. x-c(...) plot(x,axes=FALSE) axis(2) axis(1,1:50,c(label1,...,label50)) now since the labels are quite long, only a few fit on the page. Can I rotate each label by 90 degree counterclockwise (so that they are vertical)

Re: [R] axis labels vertically

2005-06-17 Thread Sundar Dorai-Raj
BoM DS wrote: Hi, I have a plot and a custom axis labeling, e.g. x-c(...) plot(x,axes=FALSE) axis(2) axis(1,1:50,c(label1,...,label50)) now since the labels are quite long, only a few fit on the page. Can I rotate each label by 90 degree counterclockwise (so that they

Re: [R] axis labels vertically

2005-06-17 Thread Uwe Ligges
BoM DS wrote: Hi, I have a plot and a custom axis labeling, e.g. x-c(...) plot(x,axes=FALSE) axis(2) axis(1,1:50,c(label1,...,label50)) now since the labels are quite long, only a few fit on the page. Can I rotate each label by 90 degree counterclockwise (so that they are

Re: [R] axis labels vertically

2005-06-17 Thread BoM DS
2005/6/17, Sundar Dorai-Raj [EMAIL PROTECTED]: You should (re-)read ?axis, which points you to the las parameter: x - 1:50 plot(x, axes = FALSE) axis(1, x, paste(label, x), las = 2, cex.axis = 0.5) axis(2) box() thank you very much. This answer helps me in several ways: 1. it solves my

Re: [R] axis labels vertically

2005-06-17 Thread Mike R
2. I wasn't aware that there is an online-help. (was using the tutorial on the web, which is nat at all detailed. help(), help.search(), and apropos() may all be useful.(thanks Sarah !!) and RSiteSearch() You might find this handy too example(axis)(thanks Brian !!)

Re: [R] axis labels vertically

2005-06-17 Thread Mike R
2. I wasn't aware that there is an online-help. (was using the tutorial on the web, which is nat at all detailed. help(), help.search(), and apropos() may all be useful.(thanks Sarah !!) and RSiteSearch() You might find this handy too example(axis)(thanks Brian !!)

[R] axis labels for stripcharts

2004-06-21 Thread Kathryn Wheatley
I've produced a stripchart but I would like to change the labelling of the x-axis. However, I can not get the scripts used in the plot() function (to eliminate labels) to work (i.e. xaxt=n or axis=FALSE). Are there other scripts availalable that will work with stripchart? Cheers, Kathryn

Re: [R] axis labels for stripcharts

2004-06-21 Thread Gabor Grothendieck
?par Kathryn Wheatley kew at utas.edu.au writes: : I've produced a stripchart but I would like to change the labelling of the : x-axis. However, I can not get the scripts used in the plot() function (to : eliminate labels) to work (i.e. xaxt=n or axis=FALSE). Are there other : scripts

[R] axis labels disappear

2004-05-21 Thread Angel Lopez
When I do a plot, e.g. plot(1:10) and resize the window so that the x-axis becomes too small to hold all the x-axis labels, R automatically makes some of the labels disappear so that the remaining fit in the available space. I would like to be able to tell R which labels should not be removed.