Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the R equivalent to the SAS Enterprise Miner Score Node?

Tags:

r

scoring

The SAS Enterprise Miner has something called a "Score Code Node." This node applies all of the previous code (i.e. creating new variables, imputing missing values, and running the model etc.) to a completely untouched data set. How do I do this in R other than just using a hold out sample (i.e. test data)?

like image 681
mmmmmmmmmm Avatar asked Oct 30 '22 22:10

mmmmmmmmmm


1 Answers

Use the Rattle GUI, as noted in the paper:

The underlying R code, constructed and executed by Rattle, is recorded in the Log tab, together with instructive comments. This allows the user to review the actual R commands. The R code snippets can also be copied as text (or Exported to file) from the Log tab and pasted into the R console and executed. This allows Rattle to be deployed for basic tasks, yet still access the full power of R as needed (e.g., to fine-tune modelling options that are not exposed in the interface).

http://journal.r-project.org/archive/2009-2/RJournal_2009-2_Williams.pdf

http://rattle.togaware.com/

like image 79
Reeza Avatar answered Nov 10 '22 12:11

Reeza