Hi @Neo,
If I understand well your problem, you might be interested by the platform Response Screening (jmp.com).
You want to check if there is significant correlations between PNP1 and PNP2 for all wafers separately :
- Launch the Response screening platform, specify "PNP1" as Y and "PNP2" as X, and waferID as your grouping variable :
-
You have then the results provided by the platform, and you can sort by pvalue, effect size, Rsquare ...
By right-clicking on the results, and then choosing "Make Combined Data Table", you can then export the results in a JMP datatable and process the results further/differently if needed.
Names Default To Here(1);
clear log ();
dt = Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
// Launch platform: Response Screening Data Table( "Semiconductor Capability" ) << Response Screening( Y( :PNP2 ), X( :PNP1 ), Grouping( :Wafer ID in lot ID ), PValues Table on Launch( 0 ) );
Another option could be to look at correlations with the Multivariate platform.
Specify your variables and the wafer ID in the "By" variable, and you can look at correlations for each wafer, and/or right-click on the Correlations values, "Make Combined Datatable" to export the datatable and process it :
You can also simply use Graph Builder to visualize each pair of X and Y for each wafer using waferID as "Page" :
Graph Builder(
Size( 534, 99956 ),
Show Control Panel( 0 ),
Variables( X( :PNP2 ), Y( :PNP1 ), Page( :Wafer ID in lot ID ) ),
Elements(
Points( X, Y, Legend( 29 ) ),
Line Of Fit( X, Y, Legend( 31 ), R²( 1 ), F Test( 1 ) )
)
);
You will have R² coefficient and you can also display a F test to check for statistical significance :
Does it answer your needs or did I understand your topic ?
Victor GUILLER
L'Oréal Data & Analytics
"It is not unusual for a well-designed experiment to analyze itself" (Box, Hunter and Hunter)