| Line 1... |
Line 1... |
| 1 |
% File src/library/graphics/man/axTicks.Rd
|
1 |
% File src/library/graphics/man/axTicks.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-2011 R Core Team
|
3 |
% Copyright 1995-2019 R Core Team
|
| 4 |
% Distributed under GPL 2 or later
|
4 |
% Distributed under GPL 2 or later
|
| 5 |
|
5 |
|
| 6 |
\name{axTicks}
|
6 |
\name{axTicks}
|
| 7 |
\alias{axTicks}
|
7 |
\alias{axTicks}
|
| 8 |
\title{Compute Axis Tickmark Locations}
|
8 |
\title{Compute Axis Tickmark Locations}
|
| Line 41... |
Line 41... |
| 41 |
specify all three (as non-NULL), the graphics environment is not used
|
41 |
specify all three (as non-NULL), the graphics environment is not used
|
| 42 |
at all. Note that the meaning of \code{axp} differs significantly
|
42 |
at all. Note that the meaning of \code{axp} differs significantly
|
| 43 |
when \code{log} is \code{TRUE}; see the documentation on
|
43 |
when \code{log} is \code{TRUE}; see the documentation on
|
| 44 |
\code{\link{par}(xaxp = .)}.
|
44 |
\code{\link{par}(xaxp = .)}.
|
| 45 |
|
45 |
|
| 46 |
\code{axTicks()} can be used an \R interface to the C function
|
46 |
\code{axTicks()} may be seen as an \R implementation of the C function
|
| 47 |
\code{CreateAtVector()} in \file{..../src/main/plot.c}
|
47 |
\code{CreateAtVector()} in \file{..../src/main/plot.c}
|
| 48 |
which is called by \code{\link{axis}(side, *)} when no argument
|
48 |
which is called by \code{\link{axis}(side, *)} when no argument
|
| - |
|
49 |
\code{at} is specified or directly by \code{\link{axisTicks}()} (in package
|
| 49 |
\code{at} is specified.
|
50 |
\pkg{grDevices}).
|
| - |
|
51 |
\cr
|
| 50 |
The delicate case, \code{log = TRUE}, now makes use of
|
52 |
The delicate case, \code{log = TRUE}, now makes use of
|
| 51 |
\code{\link{axisTicks}} (in package \pkg{grDevices}) unless
|
53 |
\code{\link{axisTicks}} unless \code{nintLog = Inf} which exists for back
|
| 52 |
\code{nintLog = Inf} which exists for back compatibility.
|
54 |
compatibility.
|
| 53 |
}
|
55 |
}
|
| 54 |
\value{
|
56 |
\value{
|
| 55 |
numeric vector of coordinate values at which axis tickmarks can be
|
57 |
numeric vector of coordinate values at which axis tickmarks can be
|
| 56 |
drawn. By default, when only the first argument is specified,
|
58 |
drawn. By default, when only the first argument is specified,
|
| 57 |
these values should be identical to those that
|
59 |
these values should be identical to those that
|