Re: [R] Multiple plots question

2008-03-21 Thread Mark Wardle
1. Work out what you want on the x and y scales from your data. 2. In your first call (to plot) set the xlim and ylim parameters to the required range. Good luck, Mark On 20/03/2008, Andre Nathan <[EMAIL PROTECTED]> wrote: > Hello > > (Sorry if this appears twice, had some mail problems...) >

[R] Multiple plots question

2008-03-20 Thread Andre Nathan
Hello (Sorry if this appears twice, had some mail problems...) I have a number of different data sets, each loaded as a matrix. I'd like to plot them in a way that the data in the first column of each matrix is plotted on the same pair of axes. What I'm doing now is to call plot() for the data o

Re: [R] Multiple plots question

2008-03-19 Thread jim holtman
You should go through and collect the 'range' of the data that you want to plot and then use "ylim" in the "plot" to set the limits for the range. On Wed, Mar 19, 2008 at 6:20 PM, Andre Nathan <[EMAIL PROTECTED]> wrote: > Hello > > I have a number of different data sets, each loaded as a matrix. I

[R] Multiple plots question

2008-03-19 Thread Andre Nathan
Hello I have a number of different data sets, each loaded as a matrix. I'd like to plot them in a way that the data in the first column of each matrix is plotted on the same pair of axes. What I'm doing now is to call plot() for the data on the first matrix, then call points() for the other ones.