all, my data looks something like this:
01/04/2006,900,11756
01/04/2006,901,7492
01/04/2006,902,4012
01/04/2006,903,3190 ....
The first column are Dates while the second column are time as 9:00. I want to get the daily sum of the third column.
Note that the date may not be continuous, and time may not be continuous.
To find all the dates in the data, I can use unique( ) function.