1 |
\name{bdp}
|
1 |
\name{bdp}
|
2 |
\alias{bdp}
|
2 |
\alias{bdp}
|
3 |
%- Also NEED an '\alias' for EACH other topic documented here.
|
3 |
%- Also NEED an '\alias' for EACH other topic documented here.
|
4 |
\title{Set or query graphical parameters with bdgraphics}
|
4 |
\title{Set or query graphical parameters with bdgraphics}
|
5 |
\description{
|
5 |
\description{
|
6 |
`bdp` is a parallel to par, working ideally the same way but controlling
|
6 |
`bdp` is a parallel to par, working ideally the same way but controlling
|
7 |
graphical parameters through the bdgraphics plotting overlayer.
|
7 |
graphical parameters through the bdgraphics plotting overlayer.
|
8 |
}
|
8 |
}
|
9 |
\usage{
|
9 |
\usage{
|
10 |
bdp(debug,method,...)
|
10 |
bdp(debug,method,...)
|
11 |
}
|
11 |
}
|
12 |
%- maybe also 'usage' for other objects documented here.
|
12 |
%- maybe also 'usage' for other objects documented here.
|
13 |
\arguments{
|
13 |
\arguments{
|
14 |
\item{debug}{If TRUE, verbose output is given. Particullarly useful to
|
14 |
\item{debug}{If TRUE, verbose output is given. Particullarly useful to
|
15 |
check what method is being called.}
|
15 |
check what method is being called.}
|
16 |
\item{grid}{If set to TRUE, a grid will be drawn _before_ the contents
|
16 |
\item{grid}{If set to TRUE, a grid will be drawn calling grid()
|
- |
|
17 |
without any arguments _before_ the contents
|
17 |
are added to the plot. See also the grid.v and grid.h arguments. Grid
|
18 |
are added to the plot. See also the grid.v and grid.h arguments which
|
- |
|
19 |
are independent functionality to the grid option. Grid
|
18 |
settings cannot be passed as arguments to
|
20 |
settings cannot be passed as arguments to
|
19 |
plotting commands.}
|
21 |
plotting commands.}
|
20 |
\item{grid.h}{Values at which horizontal grid lines will be drawn
|
22 |
\item{grid.h}{Values at which horizontal grid lines will be drawn
|
21 |
before the contents are added to the plot.}
|
23 |
before the contents are added to the plot. Notice that this is
|
- |
|
24 |
independent of the grid option.}
|
22 |
\item{grid.v}{Like grid.h but vertical lines.}
|
25 |
\item{grid.v}{Like grid.h but vertical lines.}
|
23 |
\item{method}{The plot method to call. It should only be used when it
|
26 |
\item{method}{The plot method to call. It should only be used when it
|
24 |
cannot automatically be determined from the class of the input,
|
27 |
cannot automatically be determined from the class of the input,
|
25 |
e.g. when a numeric vector should be plotted as a
|
28 |
e.g. when a numeric vector should be plotted as a
|
26 |
barplot. Currently, "barplot" is the only available
|
29 |
barplot. Currently, "barplot" is the only available
|
27 |
method. Others will be guessed automatically.}
|
30 |
method. Others will be guessed automatically.}
|
28 |
\item{...}{To be documented. A lot of graphical parameters. See the
|
31 |
\item{...}{To be documented. A lot of graphical parameters. See the
|
29 |
output of bdp().}
|
32 |
output of bdp().}
|
30 |
}
|
33 |
}
|
31 |
%\details{
|
34 |
%\details{
|
32 |
|
35 |
|
33 |
%}
|
36 |
%}
|
34 |
%\value{
|
37 |
%\value{
|
35 |
% ~Describe the value returned
|
38 |
% ~Describe the value returned
|
36 |
% If it is a LIST, use
|
39 |
% If it is a LIST, use
|
37 |
% \item{comp1 }{Description of 'comp1'}
|
40 |
% \item{comp1 }{Description of 'comp1'}
|
38 |
% \item{comp2 }{Description of 'comp2'}
|
41 |
% \item{comp2 }{Description of 'comp2'}
|
39 |
% ...
|
42 |
% ...
|
40 |
%}
|
43 |
%}
|
41 |
%\references{ ~put references to the literature/web site here ~ }
|
44 |
%\references{ ~put references to the literature/web site here ~ }
|
42 |
\author{Peder Bacher <pb@imm.dtu.dk>, Philip Delff <pdel@imm.dtu.dk>}
|
45 |
\author{Peder Bacher <pb@imm.dtu.dk>, Philip Delff <pdel@imm.dtu.dk>}
|
43 |
%\note{ ~~further notes~~
|
46 |
%\note{ ~~further notes~~
|
44 |
|
47 |
|
45 |
% ~Make other sections like Warning with \section{Warning }{....} ~
|
48 |
% ~Make other sections like Warning with \section{Warning }{....} ~
|
46 |
%}
|
49 |
%}
|
47 |
%\seealso{ ~~objects to See Also as \code{\link{help}}, ~~~ }
|
50 |
%\seealso{ ~~objects to See Also as \code{\link{help}}, ~~~ }
|
48 |
\examples{
|
51 |
\examples{
|
49 |
bdp(file="test.ps")
|
52 |
bdp(file="test.ps")
|
50 |
}
|
53 |
}
|
51 |
% Add one or more standard keywords, see file 'KEYWORDS' in the
|
54 |
% Add one or more standard keywords, see file 'KEYWORDS' in the
|
52 |
% R documentation directory.
|
55 |
% R documentation directory.
|
53 |
\keyword{hplot}
|
56 |
\keyword{hplot}
|
54 |
%\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
|
57 |
%\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
|
55 |
|
58 |
|