cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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