print.orf {orf} | R 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 |
... |
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)
[Package orf version 0.1.4 Index]