I have just found out about R, which seems to be the ideal tool to get statistics on webserver logfiles. I have looked into several libs like zoo
and plyr
, but none of them offer a straight forward solution to aggregate timestamped data.
Is there any R lib or a tutorial or a documentation which focuses on analyzing log file like data? Which emphasize on aggregating the time in slices?
Possible usecases:
- average request time per day
- average requests per session per day
- get the slowest requests this week
- ...