#' @title Return slot \code{edData} from the input object
#'
#' @description \code{getEdData} extracts the slot \code{edData} which contains the edited data for
#' the construction of a categorical observation-prediction model.
#'
#' @param object Object of class \linkS4class{fitParam}.
#'
#' @return Object of class \code{"\link[StQ]{StQ}"} corresponding to the slot \code{edData} of the input
#' object.
#'
#' @examples
#' \dontrun{
#' source('R:/USIE/Proyecto_DepSel_VarQual/datos/PreparacionStQsAnalisis.R', encoding = 'UTF-8')
#' fitPar <- new(Class = 'fitParam', edData = ff_2011_model.StQ, rawData = fd_2011_model.StQ,
#' selection = FALSE, formula = 'Ocupacion_35.__11.1.3._ ~ ActivEcono_35.__2.1.1._',
#' selParam = list())
#' getEdData(fitPar)
#'}
#'
#'
#' @import StQ
#'
#' @export
setGeneric("getEdData", function(object){standardGeneric("getEdData")})
#' @rdname getEdData
#'
#' @include fitParam-class.R
#'
#' @export
setMethod(
f = "getEdData",
signature = c("fitParam"),
function(object){object@edData}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.