[R] predict.lda is missing ?

2006-11-10 Thread Larry White
I'm trying to classify some observations using lda and I'm getting a strange error. I loaded the MASS package and created a model like so: train - mod1[mod1$rand 1.7,] classify - mod1[mod1$rand = 1.7,] lda_res - lda(over_win ~ t1_scrd_a + t1_alwd_a, data=train, CV=TRUE) That works, and all is

Re: [R] predict.lda is missing ?

2006-11-10 Thread Weiwei Shi
i think you should use lda_res - lda(over_win ~ t1_scrd_a + t1_alwd_a, data=train, CV=F) loo should be disabled for predicting purpose. On 11/10/06, Larry White [EMAIL PROTECTED] wrote: I'm trying to classify some observations using lda and I'm getting a strange error. I loaded the MASS