print.orf | R Documentation |
print of an estimated Ordered Forest object of class orf
## S3 method for class 'orf' print(x, ...)
x |
estimated Ordered Forest object of class |
... |
further arguments (currently ignored) |
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.
Gabriel Okasa
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.