I have a collection of log data that I need to work with.
[
{
"logType":1,
"created_at": 2015-12-15 07:38:54.766Z
},
..
..
..,
{
"logType":2,
"created_at": 2015-13-15 07:38:54.766Z
}
]
My task is to group the logs by their created_at
timestamps and calculate the number of logs in each group.
I aim to create an infographic displaying the total count of logs on a weekly basis.