optimRandomForest(x, y, niter = 10, nruns = 100, ntree = 500,
ntrain = 2/3, nodesize = 5, mtry = max(floor(ncol(x)/3), 1),
profile = TRUE, progress = TRUE)niter = 10.nruns = 100.ntree = 500.nodesize = 5.profile = TRUE.progress = TRUE.The optimum number of iterations needed to de-bias the random forest regression is obtained observing the evolution of the MSPE as the number of iterations increases. The MSPE is defined as the mean of the squared differences between predicted and observed values.
Breiman, L. Using adaptive bagging to debias regressions. Berkeley: University of California, p. 16, 1999.
Liaw, A. & Wiener, M. Classification and regression by randomForest. R News. v. 2/3, p. 18-22, 2002.
Xu, R. Improvements to random forest methodology. Ames, Iowa: Iowa State University, p. 87, 2013.
randomForest