In the randomForest reference manual, the example of function randomForest
has the code as follows:
set.seed(71)
iris.rf <- randomForest(Species ~ ., data=iris, importance=TRUE,
proximity=TRUE)
What is the function of set.seed(71) before run the randomForest?