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
gianpaolo
Level IV

Response Screening DataTable

Hello

i'm writing a script that perform Response screening because my Idea is to work with  the output "Pvalues" table of this report, but im not able to assign a "dt"  variable to Pvalues table.... so with script im not able to move from another table to Pvalues.

Someone can help me

 

obj = selectDT[1] << Response Screening( Y( Response ), X( Eval( Predictor ) ), save Pvalues )

 

 

Thanks in advance

Gianpaolo

Gianpaolo Polsinelli
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Response Screening DataTable

Use the << Get PValues message to set the pointer to the output data table.

Names Default To Here( 1 );
Open( "$Sample_Data/Probe.jmp" );
obj = Response Screening(
	X( :Process ),
	Y( Eval( 8 :: 394 ) ),
	Save Outlier Indicator
);
dtPValues = obj << Get PValues;

This example was taken in the most part from the example in the Scripting Index

     Help==>Scripting Index

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Response Screening DataTable

Use the << Get PValues message to set the pointer to the output data table.

Names Default To Here( 1 );
Open( "$Sample_Data/Probe.jmp" );
obj = Response Screening(
	X( :Process ),
	Y( Eval( 8 :: 394 ) ),
	Save Outlier Indicator
);
dtPValues = obj << Get PValues;

This example was taken in the most part from the example in the Scripting Index

     Help==>Scripting Index

Jim

Recommended Articles