need to extract slope and intercept from parameter estimates table in a linear least squares model fit and save to a file
My code is not working and I'm having trouble identifying why. Any help would be most appreciated - thanks!
dt = Open("C:\Users\trcampbell\Desktop\MASTER ECOLI\2025\2024.xlsx");
obj = Fit model(
Y( :LOGECOLI ),
Effects( :LOGTURB),
Personality( "Standard Least Squares" ),
Emphasis( "Effect Leverage" ),
Run(:LOGECOLI )) ;
// Extract slope and intercept
reportObj = obj << Report;
paramTab...