Displaying 1 result from an estimated 1 matches for "bldate".
Did you mean:
bldata
2009 Jan 21
1
Two similar zoo objects with different structures, how to get same structure?
...uot;month" "day" "year"
- attr(*, "dimnames")=List of 2
..$ : NULL
..$ : chr [1:12] "ED4 COMDTY" "ED12 COMDTY" "ER4 COMDTY" "ER12 COMDTY" ...
I also have a vector of dates of same length as zoo object (5219):
> str(bldates)
chr [1:5219] "01/01/90" "01/02/90" "01/03/90" "01/04/90" "01/05/90"
"01/08/90" "01/09/90" "01/10/90" "01/11/90" "01/12/90" ...
I do the following:
> attributes(bldata)[[2]] <- as.Date(blda...