Subversion Repositories bdplot

Rev

Rev 27 | Rev 35 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27 Rev 31
1
\name{bdopen}
1
\name{bdopen}
2
\alias{bdopen}
2
\alias{bdopen}
3
%- Also NEED an '\alias' for EACH other topic documented here.
3
%- Also NEED an '\alias' for EACH other topic documented here.
4
\title{A graphics device overlayer}
4
\title{A graphics device 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(file=bdp()$file,paper=bdp()$paper,mfrow=bdp()$mfrow,scale=TRUE)
10
bdopen(file=bdp()$file,paper=bdp()$paper,mfrow=bdp()$mfrow,scale=TRUE)
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{file}{An optional character string denoting the file to which
14
  \item{file}{An optional character string denoting the file to which
15
    graphics will be written if it has one of "ps, eps, pdf, jpg, jpeg"
15
    graphics will be written if it has one of "ps, eps, pdf, jpg, jpeg"
16
    as ending. If file does not have one of these endings, graphics are
16
    as ending. If file does not have one of these endings, graphics are
17
    written to the X11 driver (which only works on systems using X11,
17
    written to the X11 driver (which only works on systems using X11,
18
    i.e. Linux, Solaris, some BSD, etc.)}
18
    i.e. Linux, Solaris, some BSD, etc.)}
19
  \item{paper}{What paper standard to write for. Currently,
19
  \item{paper}{What paper standard to write for. Currently,
20
    "a4","a4.half","b5","b5.half", and "a4.word" are implemented. This
20
    "a4","a4.half","b5","b5.half", and "a4.word" are implemented. This
21
    can also be applied with bdp().}
21
    can also be applied with bdp().}
22
  \item{mfrow}{See ?par}
22
  \item{mfrow}{See ?par}
23
  \item{scale}{Only relevant if writing to screen. If TRUE, device will
23
  \item{scale}{Only relevant if writing to screen. If TRUE, device will
24
    be scaled to double size. Notice however, that currently only the
24
    be scaled to double size. Notice however, that currently only the
25
    device itself is scaled, not the contents.}
25
    device itself is scaled, not the contents.}
26
}
26
}
27
\details{
27
%\details{
28
}
28
%}
29
\references{SVN: http://svn.imm.dtu.dk/svn/bdplot/bdgraphics}
29
\references{SVN: http://svn.imm.dtu.dk/svn/bdplot/bdgraphics}
30
\author{Peder Bacher, Philip Delff}
30
\author{Peder Bacher, Philip Delff}
31
\seealso{bdgraphics, bdp, bdplot, bddev.off}
31
\seealso{bdgraphics, bdp, bdplot, bddev.off}
32
\examples{
32
\examples{
33
bdp(file="example.ps")
33
bdp(file="example.ps")
34
bdopen()
34
bdopen()
35
bdplot(x <- -10:10, x^2)
35
bdplot(x <- -10:10, x^2)
36
bddev.off()
36
bddev.off()
37
}
37
}
38
\keyword{iplot}
38
\keyword{iplot}
39
 
39