Nothing
#' Row standardize a matrix
#'
#'
#' @param W matrix
#' @return row-standardized matrix
#' @export
row_standardize = function(W){
return(diag(1/rowSums(W)) %*% W)
}
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.