cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Browse apps to extend the software in the new JMP Marketplace
Choose Language Hide Translation Bar
Wei1
Level II

JSL script Save Values in Model Driven Multivariate Control Chart

Hi! 

How could I write JSL to "Save Columns -> Save Values" for saving t-square in Model Driven Multivariate Control Chart?

try use 

obj << T Square Plot( SaveValues );

still cannot savevalues in new column T2 

 

thanks

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: JSL script Save Values in Model Driven Multivariate Control Chart

This seems to work fine for me (using JMP 17.2)

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Quality Control/Flight Delays.jmp");

mdmcc = dt << Model Driven Multivariate Control Chart(
	Process(:AA, :CO, :DL, :F9, :FL, :NW, :UA, :US, :WN)		
);

mdmcc << T Square Plot(Save Values);
-Jarmo

View solution in original post

2 REPLIES 2
jthi
Super User

Re: JSL script Save Values in Model Driven Multivariate Control Chart

This seems to work fine for me (using JMP 17.2)

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Quality Control/Flight Delays.jmp");

mdmcc = dt << Model Driven Multivariate Control Chart(
	Process(:AA, :CO, :DL, :F9, :FL, :NW, :UA, :US, :WN)		
);

mdmcc << T Square Plot(Save Values);
-Jarmo
Wei1
Level II

Re: JSL script Save Values in Model Driven Multivariate Control Chart

Hi jthi,

 

My JMP version is 17.0

I will try to update 

 

Thanks