🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How do I feed examples incrementally to a looped process?

User: "raoji"
New Altair Community Member
Updated by Jocelyn
Say I have 50 examples in my dataset, I want to feed the the first 10 data examples to the process, then the first 20 in the next iteration and then the first 30 and then the first 40 and then all 50 - How can I do this in RapidMiner?

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Marco_Barradas"
    Altair Employee
    Accepted Answer
    Hi @raoji you are doing some loops 
    You'll need to use the following operators:
    1. Loop: With this you'll control the 5 times you are repeating the operation
    2. Macro or Generate attribute or Generate Examples: With this you'll create a macro that increases in each time the loop runs. Example 1st time value 10 the Second time Value * Number of iteration ( this part you should think since its the funny part of building solutions you can build it in many ways) 
    3. Filter Example Range: With this you'll determine the 1st and the nth example you'll want to filter and use
    That should help you with what you are trying to do.