Skip to content
Prev 20414 / 398500 Next

error in seq.POSIXt?

Nothing jumps out at me, I'm sorry to say.

But in the meantime, I am wondering if it wouldn't be easier to 
extract only the
winters with something like

    datevec[format(datevec,'%m') %in% c('12','01','02') &
            format(datevec,'%m-%d' != '02-29']

where datevec is the vector of days associated with your data, as an 
object of class POSIXct or POSIXlt.

Then use something like
   table(format(datevec,'%Y'))
to check that you have 90 of each.

-Don
At 3:27 PM -0600 5/31/02, Brandon Whitcher wrote: