cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

Response Screening DataTable

gianpaolo
Level IV

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