cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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