8daf30ff |
#' Generic function that returns the qsmooth weights
#'
#' Given a qsmooth object, this function returns the
#' qsmooth weights
|
63984401 |
#' @rdname qsmoothWeights
|
8daf30ff |
setGeneric(
name = "qsmoothWeights",
def = function(object) {
standardGeneric("qsmoothWeights")
}
)
|
63984401 |
|
8daf30ff |
#' Generic function that returns the qsmooth normalized data
#'
#' Given a qsmooth object, this function returns the
#' qsmooth normalized data
|
63984401 |
#' @rdname qsmoothData
|
8daf30ff |
setGeneric(
name = "qsmoothData",
def = function(object) {
standardGeneric("qsmoothData")
}
)
|