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
kd_kel
Level II

Save script to data table (All objects )

How do I use the save script to data table (all object)  syntax to save a data table sorted : by a column

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Save script to data table (All objects )

Is this what you are looking for

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

obj = dt << bivariate(x(:weight),y(:Height),
	By( age )
);
obj[1] << Save ByGroup Script to data table;
Jim

View solution in original post

4 REPLIES 4
txnelson
Super User

Re: Save script to data table (All objects )

If you used 

     Tables->Sort

then the script has already been saved to the data table in the form of the Source entry in the Tables Panel.

Jim
kd_kel
Level II

Re: Save script to data table (All objects )

Thanks Nelson, 

 

how about a report grouped by: a column. The report has multiple sections grouped by a column and I need to save them all to the data table

txnelson
Super User

Re: Save script to data table (All objects )

Is this what you are looking for

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

obj = dt << bivariate(x(:weight),y(:Height),
	By( age )
);
obj[1] << Save ByGroup Script to data table;
Jim
kd_kel
Level II

Re: Save script to data table (All objects )

worked perfectly ! 

 

Thanks Nelson !

Recommended Articles