Print method for an object of class "outForest".

# S3 method for class 'outForest'
print(x, ...)

Arguments

x

A on object of class "outForest".

...

Further arguments passed from other methods.

Value

Invisibly, the input is returned.

Examples

x <- outForest(iris)
#> 
#> Outlier identification by random forests
#> 
#>   Variables to check:		Sepal.Length, Sepal.Width, Petal.Length, Petal.Width
#>   Variables used to check:	Sepal.Length, Sepal.Width, Petal.Length, Petal.Width, Species
#> 
#>   Checking: Sepal.Length  Sepal.Width  Petal.Length  Petal.Width  
x
#> I am an object of class(es) outForest and list 
#> 
#> The following number of outliers have been identified:
#> 
#>              Number of outliers
#> Sepal.Length                  1
#> Sepal.Width                   1
#> Petal.Length                  2
#> Petal.Width                   2