The R Project SVN R

Rev

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

Rev Author Line No. Line
42333 ripley 1
% File src/library/stats/man/preplot.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
27442 ripley 6
\name{preplot}
56186 murdoch 7
\alias{preplot}
52776 hornik 8
\title{Pre-computations for a Plotting Object}
27442 ripley 9
\description{
10
    Compute an object to be used for plots relating to the given model object.
11
}
12
\usage{
13
preplot(object, \dots)
14
}
15
\arguments{
16
 \item{object}{a fitted model object.}
17
 \item{\dots}{additional arguments for specific methods.}
18
}
19
\details{
20
    Only the generic function is currently provided in base \R, but some
61433 ripley 21
    add-on packages have methods. Principally here for S compatibility.
27442 ripley 22
}
23
\value{
24
    An object set up to make a plot that describes \code{object}.
25
}
26
\keyword{models}