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
EGrishin
Level I

JSL Save Limit Summaries of MDMVCC

Hello! How can i save values from table "Limit Summaries" of MDMVCC analysis with jsl script?

1 ACCEPTED SOLUTION

Accepted Solutions
Georg
Level VII

Re: JSL Save Limit Summaries of MDMVCC

I think these lines will do it.

You also could have done this interactively as @KarenC  mentioned, and than have a look to the result table script, it tells you how it works. 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Quality Control/Flight Delays.jmp" );
obj = dt <<
Model Driven Multivariate Control Chart(
	Process( :AA, :CO, :DL, :F9, :FL, :NW, :UA, :US, :WN ),
	T Square Plot(
		Contribution Proportion Plot for Selected Samples( {24} )
	)
);

// get reference to the 4th table box (with limit summaries)
// perhaps you have to try which is the right one, xpath can help
tb = (obj << Xpath("//TableBox"))[4];
// and save it
tb  << Make Into Data Table;
Georg

View solution in original post

3 REPLIES 3
KarenC
Super User (Alumni)

Re: JSL Save Limit Summaries of MDMVCC

Right click on the table and select "make into data table" and then you can save that table.
EGrishin
Level I

Re: JSL Save Limit Summaries of MDMVCC

Sorry, I didn't specify, that I need to do this with jsl script
Georg
Level VII

Re: JSL Save Limit Summaries of MDMVCC

I think these lines will do it.

You also could have done this interactively as @KarenC  mentioned, and than have a look to the result table script, it tells you how it works. 

 

Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Quality Control/Flight Delays.jmp" );
obj = dt <<
Model Driven Multivariate Control Chart(
	Process( :AA, :CO, :DL, :F9, :FL, :NW, :UA, :US, :WN ),
	T Square Plot(
		Contribution Proportion Plot for Selected Samples( {24} )
	)
);

// get reference to the 4th table box (with limit summaries)
// perhaps you have to try which is the right one, xpath can help
tb = (obj << Xpath("//TableBox"))[4];
// and save it
tb  << Make Into Data Table;
Georg

Recommended Articles