scikit learn transform #3399
-
Hi,
the fit work but the transform return Is there a way to make datatable "subscriptable" ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
Perhaps, sklearn just doesn’t support datatable frames as an input? |
Beta Was this translation helpful? Give feedback.
-
Answer, thanks to @oleksiyskononenko : |
Beta Was this translation helpful? Give feedback.
Answer, thanks to @oleksiyskononenko :
Either use
mydatatable[:,'mycol']
ormydatatable['mycol']
for sklearnor use
dt.str.split_into_nhot(mydatatable['mycol'])
if sklearn is not needed.