Hi
I am using JMP 11.2, and I am still running into the same problem reported here. Using wrap and group Y together works OK, but group X and group Y on the same plot with limited levels in view is causing problems.
Example:
Data:
Group 1 | Group 2 | x | y |
g1 | A | 1 | 50 |
g1 | A | 2 | 49 |
g1 | A | 3 | 48 |
g1 | B | 1 | 10 |
g1 | B | 2 | 11 |
g1 | B | 3 | 12 |
g2 | A | 1 | 8 |
g2 | A | 2 | 8.2 |
g2 | A | 3 | 7 |
g2 | B | 1 | 1 |
g2 | B | 2 | 2 |
g2 | B | 3 | 1.5
|
script:
Graph Builder(
Variables(
X( :x ),
Y( :y ),
Group X( :Group 1, N View Levels( 1 ), First View Level( 2 ) ),
Group Y( :Group 2 )
),
Points( X, Y, Legend( 1 ), Jitter( 1 ) ),
Smoother( X, Y, Legend( 2 ) )
);
X( :x ),
Y( :y ),
Group Y( :Group 2 ),
Wrap( :Group 1, N View Levels( 1 ), First View Level( 2 ) )
),
Points( X, Y, Legend( 1 ), Jitter( 1 ) ),
Smoother( X, Y, Legend( 2 ) )
);