Nothing
#'
#' metamorphoseSlot
#' @name metamorphoseSlot-Ready4Module
#' @description metamorphoseSlot method applied to Ready4Module
#' @param x An object of class Ready4Module
#' @param slot_nm_1L_chr Slot name (a length one character vector)
#' @param ... Additional arguments
#' @return A ready4 model module (an instance of a class that inherits from Ready4Module).
#' @rdname metamorphoseSlot-methods
#' @aliases metamorphoseSlot,Ready4Module-method
#' @export
methods::setMethod("metamorphoseSlot", "Ready4Module", function(x,
slot_nm_1L_chr,
...){
slot_xx <- eval(parse(text = paste0("x@",slot_nm_1L_chr)))
y_xx <- metamorphose(slot_xx,...)
return(y_xx)
})
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.