Re: [R] Question on implementing RandomForest

2009-06-03 Thread Allan Engelhardt
To get the prediction in the database see help("predict.randomForest"). This will allow you to score the existing data: you then export the scores to the database using "RODBC" or similar package. This is what most people mean when the say they want to get the model into the database. If you

Re: [R] Question on implementing RandomForest

2009-06-02 Thread Uwe Ligges
Nallan Suresh wrote: Hi - I am new to RandomForest and want to be able to predict for a set of values outside of R. So for example, if I create the model in R and want to get the prediction for an observation in a database, is there a way I can get the algorithm for the trees and final pred

[R] Question on implementing RandomForest

2009-06-02 Thread Nallan Suresh
Hi - I am new to RandomForest and want to be able to predict for a set of values outside of R. So for example, if I create the model in R and want to get the prediction for an observation in a database, is there a way I can get the algorithm for the trees and final prediction for this model pri