Exclude Grouping values in nested groups in graph builder.
I have a heat map that needs some nested groups (in order to properly show values inside the heat map) squares. My issue is that a lot of the rows are entirely missing because it forces every group to exist. Is there a way to only show valid groups? For example:
Names Default to here(1);
dt = open("$SAMPLE_DATA\Big Class.jmp");
rows = dt << Get Rows Where(:age == 14 & :sex == "M");
dt << del...
vince_faller