Nothing
#' @describeIn ExposomeSet Getter to obtain the families's names of the
#' family of each exposure.
#' @param by.exposure If set to \code{TRUE} ir returns the family which
#' each exposure belongs
setMethod(
f = "familyNames",
signature = "ExposomeSet",
definition = function(object, by.exposure = FALSE) {
if(by.exposure) {
fm <- as.character(pData(featureData(object))[ , 1])
names(fm) <- rownames(pData(featureData(object)))
return(fm)
} else {
return(as.character(unique(pData(featureData(object))[ , 1])))
}
}
)
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.