Generic function to convert an R object to a plantuml Class object. This can be plotted.

as.plantuml(x, ...)

Arguments

x

R object to be converted

...

other argunents passed on to generic functions

Value

object of class plantuml which can be plotted.

Examples

if (FALSE) {
x <- list(
  a = 1:10,
  b = letters[1:4],
  c = data.frame(
    x = 1:10,
    y = c(TRUE, FALSE)
  )
)
x <- plantuml(x)
plot( x )
}