Subversion Repositories bdplot

Rev

Rev 49 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
49 pdel 1
\name{bd.reset}
2
\alias{bd.reset}
3
%- Also NEED an '\alias' for EACH other topic documented here.
4
\title{Resetting the graphics overlayer}
5
\description{
6
A function that opens relevant the relevant device based on "file",
7
either applied with bdp() or as an argument.
8
}
9
\usage{
10
bdopen(reread=FALSE)
11
}
12
%- maybe also 'usage' for other objects documented here.
13
\arguments{
14
  \item{reread}{If TRUE, configuration files will be re-read.}
15
}
16
\details{The default values in bdp are defined by defaults in the code
17
  plus up to two configuration files written by the user. After reading
18
  the values in the code, ~/bdp_config.R, then
19
  paste(getwd(),"/bdp_config_local.R",sep="") are sourced. The config files
20
  are just bdp commands.
21
}
22
\references{SVN: http://svn.imm.dtu.dk/svn/bdplot/bdgraphics}
23
\author{Peder Bacher, Philip Delff}
24
\seealso{bdgraphics, bdp, bdplot, bddev.off}
25
\examples{
61 pdel 26
## bdp(file="example.ps")
27
bdopen()
28
x <- -10:10
29
bdplot(x, x^2)
30
bddev.off()
49 pdel 31
}
32
\keyword{iplot}