cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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