R/backwards_compatible.R

Defines functions honestRF

Documented in honestRF

# We are making sure here that RF is backwards compatible

#' @include forestry.R
# -- honestRF ------------------------------------------------------------------
#' @title Honest Random Forest
#' @description This function is deprecated and only exists for backwards
#'   backwards compatibility. The function you want to use is `forestry`.
#' @param ... parameters which are passed directly to `forestry`
#' @return A `forestry` object
#' @export honestRF
honestRF <- function(...) forestry(...)


# -- Random Forest Constructor -------------------------------------------------
#' @title forestry class
#' @name forestry-class
#' @description `honestRF` class only exists for backwards compatibility reasons
setClass(Class = "honestRF",
         contains = 'forestry')

Try the Rforestry package in your browser

Any scripts or data that you put into this service are public.

Rforestry documentation built on March 31, 2023, 11:33 p.m.