Slicing Associative Arrays?
Fox matrix indexing, one can use 0 and get a full slice:m = [ 1 2 , 3 4];
m[0,1]; // [1, 3] For Data tables this works as well: test = new table("test", For lists of lists, this is not possible:
add rows(10),
new column("col1",Character, set each value({"A","B","C"}[random integer(3)])),
new column("col2", set each value(random uniform(5))));
test[4,0]list= {{"A", 3},{"B", 5}};
list[0,1]Sure, the...