R/online.R

Defines functions online

Documented in online

#' online structure learning for class \code{ODT} and \code{ODRF}.
#'
#' \code{\link{ODT}} and \code{\link{ODRF}} are constantly updated by multiple batches of data to optimize the model. \code{online} is a S3 method for class \code{ODT} and \code{ODRF}.
#'
#' @param obj an object of class \code{ODT} or \code{ODRF}.
#' @param ... For other parameters related to class \code{obj}, see \code{ODT} or \code{ODRF}.
#'
#' @return object of class \code{ODT} or \code{ODRF}.
#'
#' @keywords internal
#'
#' @seealso \code{\link{ODT}} \code{\link{ODRF}} \code{\link{online.ODT}} \code{\link{online.ODRF}}
#'
#' @export
online <- function(obj, ...) {
  UseMethod("online", obj)
}

Try the ODRF package in your browser

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

ODRF documentation built on May 31, 2023, 8:22 p.m.