Closed souvikjana1993 closed 5 years ago
I get this error ----> 1 df >> select(X.Month) >> head(5)
TypeError: unsupported operand type(s) for >>: 'DataFrame' and 'function'
This error crops up when you haven't cast your DataFrame into a DplyFrame. Try
DplyFrame
df = DplyFrame(df) df >> select(X.Month) >> head(5)
I get this error ----> 1 df >> select(X.Month) >> head(5)
TypeError: unsupported operand type(s) for >>: 'DataFrame' and 'function'