Re: [R] R - PLOT - X-AXIS - DECIMALS

2014-11-19 Thread statup r
#x27;d start with > >str(aaa) > >because my first guess is that your data import did not work as you > >expected. > > > > > > > >On Wed, Nov 19, 2014 at 10:13 AM, statup r wrote: > >> I have a test.csv with two fields "year" and "sal

[R] R - PLOT - X-AXIS - DECIMALS

2014-11-19 Thread statup r
I have a test.csv with two fields "year" and "sale", with below values: year sale 20011002002200 This is what I did in R. >aaa<-read.csv("test.csv") >plot(aaa) But when I call the above plot function why I'm getting decimals in x-axis (year) ex: 2001.0, 2002.05 Please help.