Predict Using GatingTreeRandomForest Model
Source:R/GatingTreeRandomForest.R
predictGatingTreeRandomForest.Rd
This function uses the GatingTreeRandomForest model stored in a `FlowObject` to make predictions on a new dataset. It prepares the test dataset, applies the gating conditions specified in the model, and then uses the Random Forest model to predict outcomes.
Value
A list containing:
predicted_scores: The probabilities predicted by Random Forest.
test_data: The test data used for Random Forest.
results_pred: A data frame for predicted scores.
See also
Other GatingTree Random Forest Analysis:
GatingTreeRandomForest()
Examples
if (FALSE) { # \dontrun{
train_x <- GatingTreeRandomForest(train_x)
predictions <- predictGatingTreeRandomForest(train_x, test_y)
head(predictions$predicted_scores)
} # }