Hello!
Hopefully that's what JMP is good at, too.
For example, using THE JMP example, we get 4 curves. How do we compare their similarity?
With "PNP1" as the standard, the other three groups of curves are compared with it and the one most similar to "PNP1" is obtained.
It is possible that different methods of comparison will lead to different results.
I think it's based on the similarity between the high and low points of the curve.
This may result in two curves that are more similar in shape even though their data are much different.
Thanks!
dt=Open("$SAMPLE_DATA/Semiconductor Capability.jmp");
dt << Select Where( Row() < 61 );
dt << Select Columns( "PNP1", "PNP2", "PNP3", "PNP4" );
d3 = dt << Subset( Output Table( "test" ), Selected Rows( 1 ), columns( PNP1, PNP2, PNP3, PNP4 ) );
p=d3<<Graph Builder(
Size( 534, 454 ),
Show Control Panel( 0 ),
Variables(
X( Transform Column( "Row", Formula( Row() ) ) ),
Y( :PNP1 ),
Y( :PNP2, Position( 1 ) ),
Y( :PNP3, Position( 1 ) ),
Y( :PNP4, Position( 1 ) )
),
Elements( Line( X, Y( 1 ), Y( 2 ), Y( 3 ), Y( 4 ), Legend( 5 ) ) )
);