1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/S3_definitions.R
\name{plot.rate}
\alias{plot.rate}
\title{plot method for rate object}
\usage{
\method{plot}{rate}(x, conf.int = TRUE, eps = 0.2, left.margin, xlim, ...)
}
\arguments{
\item{x}{a rate object (see \verb{[rate]})}
\item{conf.int}{logical; default TRUE draws the confidence intervals}
\item{eps}{is the height of the ending of the error bars}
\item{left.margin}{set a custom left margin for long variable names. Function
tries to do it by default.}
\item{xlim}{change the x-axis location}
\item{...}{arguments passed on to graphical functions points and segment
(e.g. \code{col}, \code{lwd}, \code{pch} and \code{cex})}
}
\value{
Always returns \code{NULL} invisibly.
This function is called for its side effects.
}
\description{
Plot rate estimates with confidence intervals lines using R base graphics
}
\details{
This is limited explanatory tool but most graphical
parameters are user adjustable.
}
\author{
Matti Rantanen
}
|