Prediction model
indu
New Altair Community Member
I have two datasets X and Y, both have "Class" attribute. This class has labels "0" and "1". I want to combine these two datasets and make predictions as a single model. Can someone share the steps for this task.
Tagged:
0
Answers
-
Hello @indu,If both have the same attributes, you can simply use the Append operator to stack one on top of the other. If some of the attributes are the same, but not all, then the operator to use to stack these datasets is Join.The steps are pretty simple:
- Retrieve the first dataset
- Retrieve the second dataset
- Append/Join, depending on what you need.
- Use the result of the last operator to train a single model.
Rodrigo.3 -
thank you for the steps0