I am a beginner in R. I am currently using random forest to do some prediction. When I read the document, it has following command lines:
iris_rf <- randomForest(Species~.,data=trainData,ntree=100,proximity=TRUE) ///// build random forest
It looks like the 'Species' is the input data set, but I don't understand, what does the "Species~." mean, particularly what is the meaning of the operator '~.' I have never seen such kind of operator before.