R/lines.Bolstad.R

Defines functions lines.Bolstad

Documented in lines.Bolstad

#' Lines method for Bolstad objects
#' 
#' Allows simple addition of posterior distributions from other results to an
#' existing plot
#' 
#' @param x an object of class \code{Bolstad}.
#' @param \dots any additional parameters to be passed to \code{graphics::lines}.
#' 
#' @method lines Bolstad
#' 
#' @export

lines.Bolstad = function(x, ...)
  lines(x$param.x, x$posterior, ...)

Try the Bolstad package in your browser

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

Bolstad documentation built on Jan. 8, 2021, 2:03 a.m.