summary.isolation_forest: Print summary information from Isolation Forest model

View source: R/isoforest.R

summary.isolation_forestR Documentation

Print summary information from Isolation Forest model

Description

Displays the most general characteristics of an isolation forest model (same as 'print').

Usage

## S3 method for class 'isolation_forest'
summary(object, ...)

Arguments

object

An Isolation Forest model as produced by function 'isolation.forest'.

...

Not used.

Details

Note that after loading a serialized object from 'isolation.forest' through 'readRDS' or 'load', when using 'lazy_serialization=FALSE', it will only de-serialize the underlying C++ object upon running 'predict', 'print', or 'summary', so the first run will be slower, while subsequent runs will be faster as the C++ object will already be in-memory. This does not apply when using 'lazy_serialization=TRUE'.

Value

No return value.

See Also

isolation.forest


isotree documentation built on Nov. 20, 2023, 1:06 a.m.