R/standardize.R

Defines functions standardizeData

Documented in standardizeData

#' schedulers expect to see the data in a standard form
#'
#' @export
standardizeData = function(data)
{
    # TODO: Implement more checks and different interfaces here.
    if(!is(data, "DataSource"))
        stop("Expected a DataSource here")
    data
}
clarkfitzg/codedoctor documentation built on Nov. 18, 2020, 4:34 p.m.