| 42333 |
ripley |
1 |
% File src/library/stats4/man/plot-methods.Rd
|
| 68948 |
ripley |
2 |
% Part of the R package, https://www.R-project.org
|
| 59039 |
ripley |
3 |
% Copyright 1995-2007 R Core Team
|
| 42333 |
ripley |
4 |
% Distributed under GPL 2 or later
|
|
|
5 |
|
| 27844 |
ripley |
6 |
\name{plot-methods}
|
|
|
7 |
\docType{methods}
|
| 56186 |
murdoch |
8 |
\alias{plot-methods}
|
| 27844 |
ripley |
9 |
\alias{plot,ANY,ANY-method}
|
|
|
10 |
\alias{plot,profile.mle,missing-method}
|
| 54540 |
hornik |
11 |
\title{Methods for Function \code{plot} in Package \pkg{stats4}}
|
| 27844 |
ripley |
12 |
\description{
|
|
|
13 |
Plot profile likelihoods for \code{"mle"} objects.
|
|
|
14 |
}
|
|
|
15 |
\usage{
|
|
|
16 |
\S4method{plot}{profile.mle,missing}(x, levels, conf = c(99, 95, 90, 80, 50)/100, nseg = 50,
|
|
|
17 |
absVal = TRUE, \dots)
|
|
|
18 |
}
|
|
|
19 |
\arguments{
|
|
|
20 |
\item{x}{an object of class \code{"profile.mle"} }
|
|
|
21 |
\item{levels}{levels, on the scale of the absolute value of a t
|
|
|
22 |
statistic, at which to interpolate intervals. Usually \code{conf}
|
|
|
23 |
is used instead of giving \code{levels} explicitly.}
|
|
|
24 |
\item{conf}{a numeric vector of confidence levels for profile-based
|
|
|
25 |
confidence intervals on the parameters.}
|
|
|
26 |
\item{nseg}{an integer value giving the number of segments to use in
|
|
|
27 |
the spline interpolation of the profile t curves.}
|
|
|
28 |
\item{absVal}{a logical value indicating whether or not the plots
|
|
|
29 |
should be on the scale of the absolute value of the profile t.
|
| 61433 |
ripley |
30 |
Defaults to \code{TRUE}.}
|
| 27844 |
ripley |
31 |
\item{\dots}{other arguments to the \code{plot} function can be passed here.}
|
|
|
32 |
}
|
| 49610 |
hornik |
33 |
\section{Methods}{
|
|
|
34 |
\describe{
|
|
|
35 |
\item{\code{signature(x = "ANY", y = "ANY")}}{Generic function: see
|
| 87736 |
hornik |
36 |
\code{\link[graphics]{plot}}.}
|
| 49610 |
hornik |
37 |
\item{\code{signature(x = "profile.mle", y = "missing")}}{Plot
|
|
|
38 |
likelihood profiles for \code{x}.}
|
|
|
39 |
}
|
|
|
40 |
}
|
| 27844 |
ripley |
41 |
\keyword{methods}
|