| Line 1... |
Line 1... |
| 1 |
% File src/library/graphics/man/plotdefault.Rd
|
1 |
% File src/library/graphics/man/plotdefault.Rd
|
| 2 |
% Part of the R package, https://www.R-project.org
|
2 |
% Part of the R package, https://www.R-project.org
|
| 3 |
% Copyright 1995-2016 R Core Team
|
3 |
% Copyright 1995-2018 R Core Team
|
| 4 |
% Distributed under GPL 2 or later
|
4 |
% Distributed under GPL 2 or later
|
| 5 |
|
5 |
|
| 6 |
\name{plot.default}
|
6 |
\name{plot.default}
|
| 7 |
\alias{plot.default}
|
7 |
\alias{plot.default}
|
| 8 |
\title{The Default Scatterplot Function}
|
8 |
\title{The Default Scatterplot Function}
|
| Line 12... |
Line 12... |
| 12 |
}
|
12 |
}
|
| 13 |
\usage{
|
13 |
\usage{
|
| 14 |
\method{plot}{default}(x, y = NULL, type = "p", xlim = NULL, ylim = NULL,
|
14 |
\method{plot}{default}(x, y = NULL, type = "p", xlim = NULL, ylim = NULL,
|
| 15 |
log = "", main = NULL, sub = NULL, xlab = NULL, ylab = NULL,
|
15 |
log = "", main = NULL, sub = NULL, xlab = NULL, ylab = NULL,
|
| 16 |
ann = par("ann"), axes = TRUE, frame.plot = axes,
|
16 |
ann = par("ann"), axes = TRUE, frame.plot = axes,
|
| 17 |
panel.first = NULL, panel.last = NULL, asp = NA, \dots)
|
17 |
panel.first = NULL, panel.last = NULL, asp = NA,
|
| - |
|
18 |
xgap.axis = NA, ygap.axis = NA,
|
| - |
|
19 |
\dots)
|
| 18 |
}
|
20 |
}
|
| 19 |
\arguments{
|
21 |
\arguments{
|
| 20 |
\item{x, y}{the \code{x} and \code{y} arguments provide the x and y
|
22 |
\item{x, y}{the \code{x} and \code{y} arguments provide the x and y
|
| 21 |
coordinates for the plot. Any reasonable way of defining the
|
23 |
coordinates for the plot. Any reasonable way of defining the
|
| 22 |
coordinates is acceptable. See the function \code{\link{xy.coords}}
|
24 |
coordinates is acceptable. See the function \code{\link{xy.coords}}
|
| Line 63... |
Line 65... |
| 63 |
\item{panel.last}{an expression to be evaluated after plotting has
|
65 |
\item{panel.last}{an expression to be evaluated after plotting has
|
| 64 |
taken place but before the axes, title and box are added. See the
|
66 |
taken place but before the axes, title and box are added. See the
|
| 65 |
comments about \code{panel.first}.}
|
67 |
comments about \code{panel.first}.}
|
| 66 |
|
68 |
|
| 67 |
\item{asp}{the \eqn{y/x} aspect ratio, see \code{\link{plot.window}}.}
|
69 |
\item{asp}{the \eqn{y/x} aspect ratio, see \code{\link{plot.window}}.}
|
| - |
|
70 |
|
| - |
|
71 |
\item{xgap.axis, ygap.axis}{the \eqn{x/y} axis gap factors, passed as
|
| - |
|
72 |
\code{gap.axis} to the two \code{\link{axis}()} calls (when
|
| - |
|
73 |
\code{axes} is true, as per default).}
|
| - |
|
74 |
|
| 68 |
\item{\dots}{other \link{graphical parameters} (see \code{\link{par}} and
|
75 |
\item{\dots}{other \link{graphical parameters} (see \code{\link{par}} and
|
| 69 |
section \sQuote{Details} below).}
|
76 |
section \sQuote{Details} below).}
|
| 70 |
}
|
77 |
}
|
| 71 |
\details{
|
78 |
\details{
|
| 72 |
Commonly used \link{graphical parameters} are:
|
79 |
Commonly used \link{graphical parameters} are:
|