Why is it that ``` df.groupby('A')[['B','C']].apply(lambda x: x.to_records()) ``` throws: `TypeError: Series.name must be a hashable type` while ``` df.groupby('A').apply(lambda x: x[['B','C']].to_records()) ``` works?