Random split list

In a random split list, if the split value is close to 0, it is split into List A, and if it is close to 1, it is split into List B.
Can you predict which points are classified as List A and which points are classified as List B here?

you can use Random (integers only) + Dispatch to get something similar
the output of the Random is the Pattern used to dispatch items to list_A (zeroes) and list_B (ones)


random_dispatch.gh (10.2 KB)

2 Likes