Hello,
When subset by is performed, the Table Panel will show the :cols and their values for the given subset data table.
How does user access this information using script command?
Example:
mysubdt = mymaindt << Subset (by ( :first_var, :sec_var, :third_var)); // each var has multiple levels, aka several values.
// then mysubdt[1] through mysubdt[n] with n being the number of subset data tables created.
For each mysubdt[i], the Panel would show for example for one of the subset data tables:
first_var abc
sec_var xyz
third_var 123
The objective here is to then save each mysubdt[i] by doing a save that uses these variables' values.
mysubdt[1] << save ("dt_abc_xyz_123.jmp");
Just can't seem yet to find this table property information.
Other approaches?
Thanks,
John