Nothing
#' Coerce a `weights_matrix` class object into a `matrix` class object
#'
#' @param x A `weights_matrix` class object.
#' @param ... Additional parameter passed to `as.matrix()`.
#' @return A `matrix` and `array` class object.
#' @export
as.matrix.weights_matrix <- function(x,
...) {
class(x) <- c("matrix", "array")
return(x)
}
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.