Learn R Programming

StratifiedRF (version 0.2.2)

print.stratified_rf: Print summary statistics from a model

Description

Print summary statistics from a model

Usage

# S3 method for stratified_rf
print(x, ...)

Arguments

x

A stratified_rf model.

...

other options (not currently used)

Examples

Run this code
data(iris)
groups <- list(c("Sepal.Length","Sepal.Width"),c("Petal.Length","Petal.Width"))
mtry <- c(1,1)
m <- stratified_rf(iris,"Species",groups,mtry,ntrees=2,multicore=FALSE)
print(m)

Run the code above in your browser using DataLab