The R Project SVN R

Rev

Rev 24405 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24405 Rev 25118
Line 28... Line 28...
28
  \item{xlabs}{vector of labels for the x axes}
28
  \item{xlabs}{vector of labels for the x axes}
29
  \item{ylabs}{vector of labels for the y axes}
29
  \item{ylabs}{vector of labels for the y axes}
30
  \item{main}{logical, or vector of main titles;  if \code{TRUE}, the
30
  \item{main}{logical, or vector of main titles;  if \code{TRUE}, the
31
    model's call is taken as main title, \code{NULL} or \code{FALSE} mean
31
    model's call is taken as main title, \code{NULL} or \code{FALSE} mean
32
    no titles.}
32
    no titles.}
33
  \item{col.term, lwd.term}{color and line width for the ``term curve'',
33
  \item{col.term, lwd.term}{color and line width for the \dQuote{term curve},
34
    see \code{\link{lines}}.}
34
    see \code{\link{lines}}.}
35
  \item{col.se, lty.se, lwd.se}{color, line type and line width for the
35
  \item{col.se, lty.se, lwd.se}{color, line type and line width for the
36
    ``twice-standard-error curve'' when \code{se = TRUE}.}
36
    \dQuote{twice-standard-error curve} when \code{se = TRUE}.}
37
  \item{col.res, cex, pch}{color, plotting character expansion and type
37
  \item{col.res, cex, pch}{color, plotting character expansion and type
38
    for partial residuals, when \code{partial.resid = TRUE}, see
38
    for partial residuals, when \code{partial.resid = TRUE}, see
39
    \code{\link{points}}.}
39
    \code{\link{points}}.}
40
   \item{ask}{logical; if \code{TRUE}, the user is \emph{ask}ed before
40
   \item{ask}{logical; if \code{TRUE}, the user is \emph{ask}ed before
41
     each plot, see \code{\link{par}(ask=.)}.}
41
     each plot, see \code{\link{par}(ask=.)}.}
Line 43... Line 43...
43
     numbers for factor terms?}
43
     numbers for factor terms?}
44
  \item{\dots}{other graphical parameters}
44
  \item{\dots}{other graphical parameters}
45
}
45
}
46
\details{
46
\details{
47
  The model object must have a \code{predict} method that accepts
47
  The model object must have a \code{predict} method that accepts
48
  \code{type=terms}, eg \code{\link{glm}} in the base package,
48
  \code{type=terms}, eg \code{\link{glm}} in the\pkg{base} package,
49
  \code{\link[survival]{coxph}} and \code{\link[survival]{survreg}} in the
49
  \code{\link[survival]{coxph}} and \code{\link[survival]{survreg}} in
50
  \code{survival} package.
50
  the \pkg{survival} package.
51
 
51
 
52
  For the \code{partial.resid=TRUE} option it must have a
52
  For the \code{partial.resid=TRUE} option it must have a
53
  \code{\link{residuals}} method that accepts \code{type="partial"},
53
  \code{\link{residuals}} method that accepts \code{type="partial"},
54
  which \code{\link{lm}} and \code{\link{glm}} do.
54
  which \code{\link{lm}} and \code{\link{glm}} do.
55
 
55