I have a CSV file with lots of data in it. One of the columns contains the date and time in the format, Day of week Month Day Time Timezone year or "Mon Feb 23 05:30:55 +0000 2015" as an example.
Mon Feb 23 05:30:56 +0000 2015
Mon Feb 23 05:30:56 +0000 2015
Mon Feb 23 05:30:56 +0000 2015
Mon Feb 23 05:30:56 +0000 2015
Mon Feb 23 05:30:56 +0000 2015
Mon Feb 23 05:30:55 +0000 2015
Mon Feb 23 05:30:55 +0000 2015
Those are some examples of the date and time data I have. But, the time runs from 01:00:00 to what is listed above.
I'm trying to read that column of times, and find the count of another data in another column in regards to the time.
So, for example, another column contains data such as a number.
I want to find the hour and minute when a certain number is displayed the most.
I honestly just don't know where to start in regards to the timestamp. How do I increment the timestamp if I have it in string format right now like it is? I need just the hour and minute though. How do I get that part out of the string and increment it?