- In C#, load and prep the data.
- Serialize the data into CSV format and save to a network share.
- Use R.NET or RServeLink, send the below commands to pull the Random Forest and the CSV data and run the data through the Random Forest.
1 2 3 4 5 6 7 | library( "randomForest" ) library( "caret" ) mydata = read.csv(file= "IntPonAllTheData.csv" ,head=TRUE,row.names= "IntPonID" ) test.predict <- predict(readRDS( '//intponsrv/Data/RandomForest/CLASS123.rf' ), mydata) write .table(test.predict) |
read.csv
. I inquired to the #R freenode channel (they are awesome, check them out and stay a while) and they suggested that I look into the save
function or dputs
function. I was able to use dputs
and serialize the data.frame. The format of the serialization wasn't an exact match, but it was close enough that I could figure out how the data.frame is structured relative to the CSV data.
The following is my converted code which generates a data.frame directly.
1 2 3 4 5 6 7 8 | library( "randomForest" ) library( "caret" ) df <- data.frame(Q1 = c(0.301775147928994,0.301775147928994,0.301775147928994,0.301775147928994),Q2 = c(0.301775147928994,0.301775147928994,0.301775147928994,0.301775147928994),Q2 = c(0.094674556213018,0.094674556213018,0.094674556213018,0.094674556213018),Q3 = c(0.301775147928994,0.301775147928994,0.301775147928994,0.301775147928994),Q4 = c(0.082840236686391,0.082840236686391,0.082840236686391,0.082840236686391),row.names = c( "baseline" , "TEST1" , "TEST2" , "TEST3" )) write .table(df) test.predict <- predict(readRDS( '//intponsrv/Data/RandomForest/CLASS123.rf' ), df) write .table(test.predict) |
No comments:
Post a Comment