After using df.groupby(df.index.month) I would like to preview my DataFrame unfortunately .head removes the group formatting and df[
df.groupby(df.index.month)
DataFrame
.head
df[
you can loop through test
test = df.groupby("columnTitle") for each in test: print each[0] #columnTitle value print each[1] #corresponding df equivalent of df[df['columnTitle']==each[0]]