R/points.humpfit.R

Defines functions `points.humpfit`

#' @param x Fitted result object.
#' @param \dots Other parameters to functions.
#' @importFrom graphics points
#' @rdname humpfit
#' @export
`points.humpfit` <-
    function(x, ...)
{
    points(x$x, x$y, ...)
    invisible()
}
jarioksa/natto documentation built on March 28, 2024, 12:45 a.m.