R/plotFrontier.R

Defines functions plotFrontier

Documented in plotFrontier

plotFrontier <-
function(frontier.object,
         xlab = 'Number of Observations Pruned',
         ylab = frontier.object$metric,
         main = 'Frontier Plot',
         ...){

    plot(frontier.object$frontier$Xs, frontier.object$frontier$Ys,
         xlab = xlab,
         ylab = ylab,
         main = main,
         ...)
}

Try the MatchingFrontier package in your browser

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

MatchingFrontier documentation built on May 2, 2019, 4:16 a.m.