Prediction model

indu
indu New Altair Community Member
edited November 2024 in Community Q&A
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:

Answers

  • rfuentealba
    rfuentealba New Altair Community Member
    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.
    All the best,

    Rodrigo.
  • indu
    indu New Altair Community Member
    thank you for the steps