cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
Lavik17
Level III

How do I stack columns using a numerical range of columns in a script?

I know this is probably an easy one, but I've been struggling with this for the past 3 hours...

Using JSL, how do I stack columns using a numerical range? for example stack columns 3 to 16.

 

Thank you!!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Jasean
Staff

Re: How do I stack columns using a numerical range of columns in a script?

 You can use a matrix to specify the columns in the stack command.  Here is an example using a sample table:

 

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

StackDT = dt << Stack(
	columns( 5::10 ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" ),
	Drop All Other Columns( 1 )
);

View solution in original post

2 REPLIES 2
Jasean
Staff

Re: How do I stack columns using a numerical range of columns in a script?

 You can use a matrix to specify the columns in the stack command.  Here is an example using a sample table:

 

dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");

StackDT = dt << Stack(
	columns( 5::10 ),
	Source Label Column( "Label" ),
	Stacked Data Column( "Data" ),
	Drop All Other Columns( 1 )
);
Lavik17
Level III

Re: How do I stack columns using a numerical range of columns in a script?

Thanks @Jasean !!!

Recommended Articles