Hello Everyone,
I understand now why I wasn't seeing "Fit Group".
I was doing only a single dependent var.
For 2 or more depen vars, the Fit Group will then appear in the output window.
Thanks for the insights and feedback.
Names Default To Here( 1 );
dt = Open( "C:\Program Files\SAS\JMP\12\Samples\Data\Semiconductor Capability.jmp" );
dt:SITE << modeling type(continuous);
dt << select where (:lot_id == "lot1" | :lot_id == "lot2");
dt << invert row selection;
dt << hide;
dt << exclude;
dt << select where (:wafer == 1 | :wafer == 2);
dt << invert row selection;
dt << hide;
dt << exclude;
dt << clear select;
//// one dependent var:
Bivariate( Y( :NPN1 ), X( :SITE ), by( :lot_id, :wafer ) );
//// two or more dependent var and Fit Group will appear in output window:
Bivariate( Y( :NPN1, :PNP1 ), X( :SITE ), by( :lot_id, :wafer ) );