summary.orf | R Documentation |
summary of an estimated Ordered Forest object of class orf
## S3 method for class 'orf' summary(object, latex = FALSE, ...)
object |
estimated Ordered Forest object of class |
latex |
logical, if TRUE latex coded summary will be generated (default is FALSE) |
... |
further arguments (currently ignored) |
summary.orf
provides a short summary of the Ordered Forest estimation,
including the input information regarding the values of hyperparameters as
well as the output information regarding the prediction accuracy.
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) # show summary of the orf estimation summary(orf_fit) # show summary of the orf estimation coded in LaTeX summary(orf_fit, latex = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.