R/plot_vf_circ.R

Defines functions plot_vf_circ

plot_vf_circ <- function(x, y, radius, bg) {
  symbols(
    x = x, y = rep(y, length(x)), circles = rep(radius, length(x)),
    bg = bg, fg = "black", inches = FALSE, add = TRUE
  )
}
michbur/dpcR documentation built on Nov. 17, 2022, 5:02 a.m.