Skip to contents

These functions are internal plotting routines in patter taken or modified from the prettyGraphics package.

Usage

one_page(.one_page, .n = 1L)

par_mf(.n)

par_mf_n(...)

add_sp_path(x, y = NULL, col = hcl.colors(length(x)), ...)

Details

Unlike the predecessor flapper package, patter does not import prettyGraphics, so the default plotting routines are much less advanced. This may be improved in future, depending on user feedback.

Author

Edward Lavender

Examples

if (FALSE) { # \dontrun{
#### Example (1): one_page() implementation
f <- function() {
  pp <- one_page(TRUE, 2)
  on.exit(par(pp), add = TRUE)
  hist(1:10, main = "1")
  hist(1:10, main = "2")
  }
f()
plot(1)
} # }