vertical: Collect the end points of the vertical bar

Description Usage Arguments Examples

View source: R/vertical.R

Description

Collect the end points of the vertical bar and works out scaling

Usage

1
vertical(microns)

Arguments

microns

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (microns) 
{
    arrowlength <- locator()
    arrow <- max(arrowlength$y) - min(arrowlength$y)
    runits <- microns/arrow
    return(list(runits = runits, mid = c(arrowlength$x[which(arrowlength$y == 
        max(arrowlength$y))], max(arrowlength$y))))
  }

phewson/PhilsAngle documentation built on May 25, 2019, 2:54 a.m.