The R Project SVN R

Rev

Rev 27844 | Rev 49610 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
27844 ripley 1
\name{plot-methods}
2
\docType{methods}
3
\alias{plot-methods}
4
\alias{plot,ANY,ANY-method}
5
\alias{plot,profile.mle,missing-method}
27957 leisch 6
\title{Methods for Function `plot' in Package `stats4'}
27844 ripley 7
\description{
8
  Plot profile likelihoods for \code{"mle"} objects.
9
}
10
\usage{
11
\S4method{plot}{profile.mle,missing}(x, levels, conf = c(99, 95, 90, 80, 50)/100, nseg = 50,
12
     absVal = TRUE, \dots)
13
}
14
\arguments{
15
 \item{x}{an object of class \code{"profile.mle"} }
16
 \item{levels}{levels, on the scale of the absolute value of a t
17
     statistic, at which to interpolate intervals.  Usually \code{conf}
18
     is used instead of giving \code{levels} explicitly.}
19
 \item{conf}{a numeric vector of confidence levels for profile-based
20
     confidence intervals on the parameters.}
21
 \item{nseg}{an integer value giving the number of segments to use in
22
     the spline interpolation of the profile t curves.}
23
 \item{absVal}{a logical value indicating whether or not the plots
24
     should be on the scale of the absolute value of the profile t.
25
     Defaults to \code{TRUE}.} 
26
 \item{\dots}{other arguments to the \code{plot} function can be passed here.}
27
}
28
\section{Methods}{\describe{
29
 
30
\item{x = "ANY", y = "ANY"}{Generic function: see \code{\link[graphics]{plot}}.}
31
 
32
\item{x = "profile.mle", y = "missing"}{Plot likelihood profiles for \code{x}.}
33
}}
34
\keyword{methods}