R/as.plantuml.numeric.R

Defines functions as.plantuml.numeric

Documented in as.plantuml.numeric

#'
#' @rdname as.plantuml
#' @export
#'
#' @examples
#' \dontrun{
#'  x <- 1/(-10:10)
#'  x <- as.plantuml(x)
#'  plot(x)
#'
#'  x <- matrix(1:21, nrow = 7, ncol = 3)
#'  x <- as.plantuml(x)
#'  plot(x)
#'  }
#'
as.plantuml.numeric <- function(
  x,
  complete = FALSE,
  nm = NULL,
  ...
) {
  return(
    as.plantuml.vma(
      x = x,
      complete = complete,
      nm = nm
    )
  )
}
rkrug/plantuml documentation built on June 3, 2023, 6:24 a.m.