cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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