search for: lrm_logist

Displaying 1 result from an estimated 1 matches for "lrm_logist".

2005 Jul 12
1
Design: predict.lrm does not recognise lrm.fit object
...create a reduced model, before trying to make predictions against an independent set of data using predict.lrm with the reduced model. I wouldn't normally use this method, but I'm contrasting the results with an AIC/MMI approach. The script contains: # Determine full logistic regression lrm_logist = lrm(PresAbs ~ Size + X2ndpc + soil + AAR + tjan.jun, data=training) # Backward selection of variables in model lrm_stp = fastbw(lrm_logist, rule="p", sls=0.05) # Fit reduced model lrm_reduced = lrm.fit(training[,lrm_stp$parms.kept[-1]], training$PresAbs) # Predict using parameters from...