Reducing number of branches in a tree by bunching leaves together

The tree on the left has 120 branches of 1 leaf each, while the tree on the right has 20 branches of 6 leaves each. How would I modify the tree on the left panel to look something like the tree on the right?

Thanks!

Flatten the list, then use the Partition List component with the Size(S) input set to 6.

1 Like

You can also use TrimTree component on the right tree.

2 Likes

thank you!