Learn R Programming

spatialRF (version 1.1.5)

print_evaluation: Prints cross-validation results

Description

Prints the results of an spatial cross-validation performed with rf_evaluate().

Usage

print_evaluation(model)

Value

A table printed to the standard output.

Arguments

model

A model resulting from rf_evaluate().

See Also

plot_evaluation(), get_evaluation()

Other model_info: get_evaluation(), get_importance(), get_importance_local(), get_moran(), get_performance(), get_predictions(), get_residuals(), get_response_curves(), get_spatial_predictors(), print.rf(), print_importance(), print_moran(), print_performance()

Examples

Run this code

if(interactive()){

data(
  plants_rf,
  plants_xy
)

plants_rf <- rf_evaluate(
  model = plants_rf,
  xy = plants_xy,
  repetitions = 5,
  n.cores = 1
)

print_evaluation(plants_rf)

}

Run the code above in your browser using DataLab