Subversion Repositories bdplot

Rev

Rev 49 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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