Skip to content
Prev 385374 / 398506 Next

Rotation Forest Error Message

Thanks Abby and Rasumus.

I like to leave the solution on this list for the next potential person.

I had failed to realize that this package doesn't use one of the formula forms.  So my call of


RotFor2000<-rotationForest(up~.,data=modeldata)

is what caused the error.

After converting to the appropriate form


x<-subset(modeldata,select=-c(up))
y<-modeldata$up
tic()
RotFor2000<-rotationForest(x,y)
toc()

It ran just fine.

Thanks again.
--John Sparks