Re: [R] Simple time series questions

2009-09-11 Thread DKOD
s.wordpress.com http://chartsgraphs.wordpress.com gug wrote: > > Thanks - that works great. > > Do you have any suggestions about the grid() problem - i.e. that the > vertical gridlines do not line up with the x-axis tickmarks (which are > years)? > > I can't see on what

Re: [R] Simple time series questions

2009-09-11 Thread DKOD
This script worked for me. Be sure to put in your correct link. link <- "C:\\R_Home\\Charts & Graphs Blog\\R_Chart_Doc\\text_data.csv" testdata<- read.table(link, head = T, sep = ",",na.strings = "na") test_date = as.Date(testdata$Date,"%d-%m-%y") plot(test_date, testdata$Model, type="l

Re: [R] How to do a pretty panel plot?

2009-05-14 Thread DKOD
Ajay Shah wrote: > > The pretty picture that I saw at: > > http://chartsgraphs.wordpress.com/2009/02/09/r-panel-chart-beats-excel-chart/#more-1096 > inspired me to try something similar. The code that I wrote is: > > --snipsnip-