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
For anyone else who wants to do this inline without throwing a lambda in (which tends to kill performance):
s.to_frame(0).groupby(0)[0]