Description Usage Arguments Value Author(s) See Also Examples
View source: R/landmark.plot.R
Adds the landmarks from each event in a landmark matrix to an existing plot. The points cycle through red, green, and blue so that each event is distinct from its neighbors.
1  | landmark.plot(landmarks, ix)
 | 
landmarks | 
 a matrix of landmarks  | 
ix | 
 indices of columns that all correspond to the same variable  | 
none
Benjamin N. Taft ben.taft@landmarkacoustics.com
1 2 3 4 5 6 7 8 9 10  | ##---- 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 (landmarks, ix) 
{
    points(t(landmarks$mean.time + landmarks[, 11 + ix]), t(landmarks[, 
        15 + ix]), pch = 16, cex = 2/3, col = rep(2:4, each = length(ix)))
  }
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.