With JSL, how to split a datatable by distinct values in a column?
Hello, I'm a starter of JSL and I have a question For example, I have a data table, and I want to divide (subset) it into several data tables, by the values of B column. A B C A B C A B C
1 1 1 => 1 1 1 AND 3 2 6
2 1 4 2 1 4 2 2 1
3 2 6 5 2 3
2 2 1
5 2 3
I know how to Subset a data table, or how to select rows accordi...