Re: [R] Three horizontal axes OR Two axes on same side?

2007-01-11 Thread Vladimir Eremeev
> axis(1, line=-3)

I have just come to this solution.
However, it seems, I don't understand the meaning of the outer parameter.
What is it for?

__
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
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Three horizontal axes OR Two axes on same side?

2007-01-11 Thread Vladimir Eremeev
> However, I don't know how to produce two axes on the same side of the
> plot.
> 
> Any pointers or examples?

Try manually drawing the axis using lines() or segments() or arrows() and 
text() or mtext()

__
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
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Three horizontal axes OR Two axes on same side?

2007-01-11 Thread Peter Dalgaard
Rafael Jimenez wrote:
> Dear list:
>
> I need to reproduce a plot with three different horizontal axes.
>
> I know how to make plot with two different horizontal axes (one
> above, one below) using axis():
>axis(1, )
>axis(3, )
>
> However, I don't know how to produce two axes on the same side of the
> plot.
>
> Any pointers or examples?
>   
Try this, and I think you'll see the light:

plot(0)
axis(1, line=-3)


-- 
   O__   Peter Dalgaard Ă˜ster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark  Ph:  (+45) 35327918
~~ - ([EMAIL PROTECTED])  FAX: (+45) 35327907

__
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
and provide commented, minimal, self-contained, reproducible code.


[R] Three horizontal axes OR Two axes on same side?

2007-01-11 Thread Rafael Jimenez
Dear list:

I need to reproduce a plot with three different horizontal axes.

I know how to make plot with two different horizontal axes (one
above, one below) using axis():
   axis(1, )
   axis(3, )

However, I don't know how to produce two axes on the same side of the
plot.

Any pointers or examples?

--
R. Jimenez

__
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
and provide commented, minimal, self-contained, reproducible code.