summary.orf.prediction | R Documentation |
summary of Ordered Forest predictions of class orf.prediction
## S3 method for class 'orf.prediction' summary(object, latex = FALSE, ...)
object |
predicted Ordered Forest object of class |
latex |
logical, if TRUE latex coded summary will be generated (default is FALSE) |
... |
further arguments (currently ignored) |
summary.orf.prediction
provides a main summary of the Ordered Forest
prediction, including the input information regarding the values of hyperparameters
as well as the inputs of the predict.orf
function.
Gabriel Okasa
# Ordered Forest require(orf) # load example data data(odata) # specify response and covariates for train and test idx <- sample(seq(1, nrow(odata), 1), 0.8*nrow(odata)) # train set Y_train <- as.numeric(odata[idx, 1]) X_train <- as.matrix(odata[idx, -1]) # test set Y_test <- as.numeric(odata[-idx, 1]) X_test <- as.matrix(odata[-idx, -1]) # estimate Ordered Forest orf_fit <- orf(X_train, Y_train) # predict the probabilities with the estimated orf orf_pred <- predict(orf_fit, newdata = X_test) # summary of the prediction object summary(orf_pred) # show summary of the orf prediction coded in LaTeX summary(orf_pred, latex = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.