Skip to content
Prev 166950 / 398502 Next

multiple secondary axes

Hi Kirsten,

If i understood correctly, i think you probably want something like
the following:

## R Start...
library(plotrix)
x1<-1:10; y1<-1:10; x2<-1:15; y2<-15:1
twoord.plot(x1, y1, x2, y2,
		xlab="Sequence",
  		ylab="Ascending values",
		rylab="Descending values",
	  	main="Two Y-Axis example")
### R end.

Hope that helps a little,
Tony Breyal


On 14 Jan, 09:29, "Kirsten Thonicke" <Kirsten.Thoni... at pik-potsdam.de>
wrote: