Description Usage Arguments Examples
This function allows one to perform random forest classification (see randomForest
for more information regarding the function to perform this classification method) of varying models on a training and testing set of the original data, the size of which is defined by the user.
1 | rF_testing(dat, s, x, model)
|
dat |
dataset to perform test on |
s |
proportion of dataset to be assigned to the 'training' dataset |
x |
the classifying variable in the dataset |
model |
written in the style of a regression, defines the classifying variable and the predictors the user wants to use to perform the test |
1 2 | rF_testing(dat = iris, s = 0.5, x = Species,
model = Species ~ Petal.Length + Petal.Width + Sepal.Length)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.