Icon

Chapter7

This directory contains 12 workflows.

Icon1. Counting Loop 1 

This workflow implements a loop cycle and precisely a counting loop with 4 iterations. Some fake data are generated with 3 clusters over 2 coordinates […]

Icon2. Counting Loop 2 

Similarly to workflow "Counting Loop 1", this workflow implements a loop cycle and precisely a counting loop with 4 iterations. The only difference is in […]

Icon3. Loop on List of Columns 

This workflow reads the dataset created by the the workflow named "Counting Loop 2". 1. Of all the Cluster_Membership columns only one is kept (they are […]

Icon4. Loop on List of Values 

This workflow loops on a list of unique values, in this case on a list of countries. The goal of the workflow is to identify the countries included in […]

Icon5. Loop on Groups of Data 

This workflow loops on a list of unique data groups. In this case the data groups are identified by country. This workflow implements the same task as the […]

Icon6. Chunk Loop 

This loop iterates over the input data table just once from beginning to end. It divides the data table in smaller chunks and iterates on each of them till […]

Icon7. Loop on Condition 

This workflow implements a loop cycle on condition, that is a loop that stops when a given condition is met. It is a game. I think of a number and write […]

Icon8. Recursive Loop 

This loop implements the same task as the workflow named "Counting Loop 1". However, in Counting Loop 1 we were adding the iteration number to the x value, […]