- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Response Screening DataTable
Created:
Jun 11, 2020 04:10 AM
| Last Modified: Jun 11, 2020 1:11 AM
(1313 views)
| Posted in reply to message from gianpaolo 06-11-2020
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
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Response Screening DataTable
Created:
Jun 11, 2020 04:10 AM
| Last Modified: Jun 11, 2020 1:11 AM
(1314 views)
| Posted in reply to message from gianpaolo 06-11-2020
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