Prediction model

induindu Member Posts: 9 Newbie
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.  

Answers

  • rfuentealbarfuentealba Moderator, RapidMiner Certified Analyst, Member, University Professor Posts: 568 Unicorn
    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.
  • induindu Member Posts: 9 Newbie
    thank you for the steps
Sign In or Register to comment.