#' move function
#'
#' @param numbers
#' @param move_matrix
#'
#' @return moved fish
#' @export
#'
move_foo <- function(numbers, move_matrix) {
moved <- as.numeric(numbers %*% move_matrix)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.