Displaying 1 result from an estimated 1 matches for "fy0203".
Did you mean:
680203
2006 Oct 08
2
Select range of dates
...03 North 548236 FALSE TRUE
and I want to do some summaries by Fiscal year (or FY quarter).
Reading manuals and such, I cobbled this less than satisfactory bit together
to start to build a factor representing a fiscal year split:
y<-as.Date(x$Date,"%d/%m/%Y")
y<-as.matrix(y)
y$FY0203<-ifelse((y>=(as.Date("2002-03-21")))&(y<=(as.Date
("2003-04-01"))),"TRUE","FALSE")
the values seem correct, but aside from ugly, the data is not in the proper
format - with some more effort I might fix that... But my question is: is
there a more...