R Code begins unem=read.csv("book5.csv",header=T,row.names=1) attach(unem) unem1=ts(unem$a, start=1) ts.plot(unem1,main="a") points(unem1,type="o") R Code ends
because the time starts at JAN_08 and ends on DEC_09, how to make the y axis in the plot show month starting from JAN_08 instead of having the current ugly appearance (5, 10, 15, 20,…)? On Wed, Jul 14, 2010 at 9:20 AM, linda.s <samrobertsm...@gmail.com> wrote: > R Code begins > unem=read.csv("book5.csv",header=T,row.names=1) > attach(unem) > unem1=ts(unem$Allen, start=1) > ts.plot(unem1,main="Allen") > points(unem1,type="o") > R Code ends > > because the time starts at JAN_08 and ends on DEC_09, how to make the > y axis in the plot show month starting from JAN_08 instead of having > the current > ugly appearance (5, 10, 15, 20,…)? >
______________________________________________ R-help@r-project.org 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.