-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03d48cc
commit 37a490d
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
\name{summary.recordedplot} | ||
\alias{summary.recordedplot} | ||
\title{Summarise the display list for a graphics device} | ||
\description{Base graphics are created using a series of calls to C routines. This function gathers the names of these calls and the values of the arguments as supplied. Names of the arguments are then added. The display list must be retrived before the graphics device is closed, but this could be stored for later summarisation.} | ||
\usage{ | ||
summary.recordedplot(object, ...) | ||
} | ||
\arguments{ | ||
\item{object}{the display list created by recordPlot().} | ||
\item{\dots}{nenessary argument for the method; currently ignored} | ||
} | ||
\details{ | ||
The outcome of this command must be further processed to give it context. | ||
} | ||
\value{ | ||
A named list of named vectors. Names of list elements are the C function calls used in plotting the graph on the graphics device; the names for the vectors are dependent on which C functions are called, but are the argument names as per the R function most closely associated with that C call. | ||
} | ||
\author{Deepayan Sarkar with minor edits from A. Jonathan R. Godfrey | ||
} | ||
\seealso{ | ||
%% ~~objects to See Also as \code{\link{help}}, ~~~ | ||
} | ||
\examples{ | ||
plot(x=1:20, y=x^2) | ||
abline(h=100) | ||
|
||
p = recordPlot() | ||
summary(p) | ||
rm(p) | ||
} |