Displaying 1 result from an estimated 1 matches for "fires98".
Did you mean:
fires
2003 Sep 01
2
readcsvIts() to create irregular time series
Dear,
Thanks for the previous tips about 'its' for importing the following
data.
5/10/1998,7
5/11/1998,5
5/12/1998,2
5/14/1998,1
5/15/1998,1
5/19/1998,1
5/20/1998,1
1. When using the following command;
test<-readcsvIts('Fires98.csv',informat=its.format("%m/%d/%Y"),header=FA
LSE)
the function reads in the data from the csv file as;
V2
05/10/1998 7
05/11/1998 5
When testing if it's a its object
is.its(test)
the result is FALSE.
When do you use informat or outformat?
What goes wrong?
2. Wh...