print.orf: Print of the Ordered Forest

View source: R/orf_user.R

print.orfR Documentation

Print of the Ordered Forest

Description

print of an estimated Ordered Forest object of class orf

Usage

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

Arguments

x

estimated Ordered Forest object of class orf

...

further arguments (currently ignored)

Details

print.orf provides a first glimpse of the Ordered Forest estimation, printed directly to the R console. The printed information contains the main inputs of the orf function.

Author(s)

Gabriel Okasa

Examples

# Ordered Forest
require(orf)

# load example data
data(odata)

# specify response and covariates
Y <- as.numeric(odata[, 1])
X <- as.matrix(odata[, -1])

# estimate Ordered Forest
orf_fit <- orf(X, Y)

# print output of the orf estimation
print(orf_fit)


orf documentation built on July 24, 2022, 1:05 a.m.