Nothing
#' Extracts Data
#'
#' Extracts data with optionally replaced outliers from object of class 'outForest'.
#'
#' @param object An object of class 'outForest'.
#' @param ... Arguments passed from or to other methods.
#' @return A \code{data.frame}.
#' @export
#' @examples
#' x <- outForest(iris)
#' head(Data(x))
Data <- function(object, ...) {
UseMethod("Data")
}
#' @describeIn Data Default method not implemented yet.
#' @export
Data.default <- function(object, ...) {
stop("No default method available yet.")
}
#' @describeIn Data Extract data from outForest object.
#' @export
Data.outForest <- function(object, ...) {
object$Data
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.