split the dataset based on the columns name
debanasser1
Registered Posts: 6 ✭
I want to split the dataset into two datasets based on the column name ,
so col A,col B go to dataset 1
and col C go to dataset 2
is it possible ?
Answers
-
Ioannis Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 28 ✭✭✭✭✭
I think you will have to create 2 SQL recipes for that:
Select A,B from ....
Select C from ....
or a single python recipe
The split method provides only row based splitting so I don't think you can do it with visual recipes.
-
Thanks ,
I tried stack and it worked
-
Ioannis Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 28 ✭✭✭✭✭
With just a single stack recipe?