R/e.bars.R

e.bars <-
function(graph, m, ebl, sides=2, length=0) {
  if(sides==1) {
    l <- ifelse(m <= 0, -ebl, ebl)
    arrows(graph, m, graph, m+l, angle=90, code=3, length=length)
  }
  if(sides==2) {
    arrows(graph, m + ebl, graph, m - ebl, angle=90, code=3, length=length)
  }
}

Try the multicon package in your browser

Any scripts or data that you put into this service are public.

multicon documentation built on May 2, 2019, 3:18 a.m.