Re: [R] substitute games with randomForest::partialPlot

2011-09-16 Thread Stephen Milborrow
Johann Hibschman wrote: I'm having trouble calling randomForest::partialPlot programmatically. It tries to use name of the (R) variable as the data column name. You may want to consider looking at plotmo (in the plotmo package) which doesn't have the above issue. library(randomForest) library

[R] substitute games with randomForest::partialPlot

2011-09-14 Thread Johann Hibschman
I'm having trouble calling randomForest::partialPlot programmatically. It tries to use name of the (R) variable as the data column name. Example: library(randomForest) iris.rf <- randomForest(Species ~ ., data=iris, importance=TRUE, proximity=TRUE) partialPlot(iris.rf, iris, Sepal.Width)