I am trying with several ways to get the prediction formula or the values in my table after this code and it doesn't give it.
model = dt << Fit Model(
Y( :RSF ),
Effects( :BH ),
LogVariance Effects( :Category & LogVariance ),
Personality( "Loglinear Variance" ),
Run(Save Prediction Formula),
SendToReport(
Dispatch(
{"Loglinear Variance Fit", "Mean Model for RSF"},
"Fixed Effect Tests",
OutlineBox,
{Close( 0 )}
)
)
);
model << Save Predicted;
model << Indiv Confidence Interval( 0.1 );
Enhanced log seems to capture these
/*:
// Save Columns: Prediction Formula
Local({obj},
obj = Data Table("InjectionMolding") << Fit Model(
Y(:Shrinkage),
Effects(:MoldTemp, :Screw Speed, :MoldTemp * :Screw Speed),
LogVariance Effects(:Hold Time & LogVariance),
Personality("Loglinear Variance"),
Run
);
obj << (:Shrinkage << Prediction Formula);
obj << Close Window;
);
// Save Columns: Indiv Confidence Interval
Local({obj},
obj = Data Table("InjectionMolding") << Fit Model(
Y(:Shrinkage),
Effects(:MoldTemp, :Screw Speed, :MoldTemp * :Screw Speed),
LogVariance Effects(:Hold Time & LogVariance),
Personality("Loglinear Variance"),
Run
);
obj << (:Shrinkage << Indiv Confidence Interval);
obj << Close Window;
);
Enhanced log seems to capture these
/*:
// Save Columns: Prediction Formula
Local({obj},
obj = Data Table("InjectionMolding") << Fit Model(
Y(:Shrinkage),
Effects(:MoldTemp, :Screw Speed, :MoldTemp * :Screw Speed),
LogVariance Effects(:Hold Time & LogVariance),
Personality("Loglinear Variance"),
Run
);
obj << (:Shrinkage << Prediction Formula);
obj << Close Window;
);
// Save Columns: Indiv Confidence Interval
Local({obj},
obj = Data Table("InjectionMolding") << Fit Model(
Y(:Shrinkage),
Effects(:MoldTemp, :Screw Speed, :MoldTemp * :Screw Speed),
LogVariance Effects(:Hold Time & LogVariance),
Personality("Loglinear Variance"),
Run
);
obj << (:Shrinkage << Indiv Confidence Interval);
obj << Close Window;
);