I have a series, Data that has the following data:
timestamp
02-12-2013 12:00:12 1.2
02-12-2013 14:00:00 1.4
02-13-2013 16:05:12 1.7
02-15-2013 16:05:12 1.7
I'm trying to subset the data by data[data.index == '02-12-2013'] and it only returns the first instance. May I know how can I obtain all rows that have the specified date?