I currently have a pandas Series with dtype Timestamp, and I want to group it by date (and have many rows with different times in each group).
Series
Timestamp
grouped = s.groupby(s)
Or:
grouped = s.groupby(lambda x: s[x])