[R] Graph Axis

2008-02-25 Thread Khadija Mohammedali
Hi I have data of exchange rates and time, and am trying to draw a graph that will show the rates on the y axis and dates on the x axis. I am using the following code: plot(rate, type='l', xlab='Date', ylab='Rate', main='£ to Euro rate over 5 years')This gives me the graph I want although I wan

Re: [R] Graph Axis

2008-02-25 Thread Khadija Mohammedali
E)> x$Date <- as.Date(x$Date, "%d/%m/%Y")> plot(x$Date, > x$Rate, type='l')> > > On 2/25/08, Khadija Mohammedali <[EMAIL PROTECTED]> > wrote:> >> > Hi I have data of exchange rates and time, and am trying to draw > a graph that w