cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • See how to interactively organize and restructure data for analysis. Register for May 29 webinar, 2pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
hogi
Level XIII

Subset By: information about the By Group?

After subgrouping a table with the "by" option and concatenating the daughter tables, the final table contains a new column with the By Group Information.

Where is this information saved - can it be accessed by the user?

Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );

dts = dt << Subset(	By( :sex ),columns(:name));

dts[1] << set name("A");
dts[2] << set name("B");


dts[1] << Concatenate(dts[2]); // with new column sex !
1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XIII

Re: Subset By: information about the By Group?

ah, table variable. easy.

View solution in original post

1 REPLY 1
hogi
Level XIII

Re: Subset By: information about the By Group?

ah, table variable. easy.

Recommended Articles