| print.rf | R Documentation |
Custom print method for models fitted with rf(), rf_repeat(), and rf_spatial().
## S3 method for class 'rf' print(x, ...)
x |
A model fitted with |
... |
Additional arguments for print methods. |
Prints model details to the console.
print_evaluation(), print_importance(), print_moran(), print_performance()
if(interactive()){
#loading example data
data("plant_richness_df")
data("distance_matrix")
#fitting random forest model
rf.model <- rf(
data = plant_richness_df,
dependent.variable.name = "richness_species_vascular",
predictor.variable.names = colnames(plant_richness_df)[5:21],
distance.matrix = distance_matrix,
distance.thresholds = 0,
n.cores = 1
)
#printing model summary
print(rf.model)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.