in reply to Split date ranges/chunks based on Unix epoch time?
Then later you can break it down into years/months/days/hours.my %date_count; foreach my $time ( @times ) { $date_count{ ( $time / 3600 ) * 3600 }++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Split date ranges/chunks based on Unix epoch time?
by Krambambuli (Curate) on Apr 26, 2007 at 06:47 UTC | |
by jwkrahn (Abbot) on Apr 26, 2007 at 14:13 UTC | |
by ikegami (Patriarch) on Apr 26, 2007 at 21:02 UTC |