Subversion Repositories bdplot

Rev

Rev 6 | Rev 27 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 pdel 1
\name{bdplot}
2
\alias{bdplot}
3
%- Also NEED an '\alias' for EACH other topic documented here.
4
\title{A plotting overlayer}
5
\description{
6 pdel 6
  This is the plotting function in the bdgraphics package. It corresponds to
5 pdel 7
  plot from the graphics package but benefits from the variable sharing
8
  provided by the bdplot package.
9
}
10
\usage{
11
bdplot(x, y=NULL, z=NULL,cex.plot=bdp()$cex.plot,xaxt="n",xlab=bdp()$xlab, ylab=bdp()$ylab,xlim=range(x,bdp()$xlim,na.rm=TRUE),ylim=range(bdp()$ylim,y,na.rm=TRUE),col=bdp()$col,main=NULL,type=bdp()$type,border=bdp()$border,...)
12
}
13
%- maybe also 'usage' for other objects documented here.
14
\arguments{
15
  \item{x}{The first or only dimension to plot. May be of class
16
    numeric, histogram, acf, ...}
17
  \item{y}{ Optional second coordinate if \code{x} is numeric. If
18
    \code{x} is not numeric, \code{y} is ignored}
6 pdel 19
  \item{z}{Optional third coordinate. Used in image plotting.}
20
  The rest of the named arguments can also be set with bdp().
21
  \item{cex.plot}{See cex in ?plot. Size of plotting characters.}
22
  \item{xlab}{}
23
  \item{ylab}{}
24
  \item{xlim}{}
25
  \item{ylim}{}
26
  \item{col}{}
27
  \item{type}{}
28
  \item{\dots}{Arguments passed to the relevant plotting function.}
5 pdel 29
}
30
\details{
31
}
32
\value{
6 pdel 33
Nothing is returned.
5 pdel 34
}
6 pdel 35
\references{SVN: http://svn.imm.dtu.dk/svn/bdplot}
36
\author{Peder Bacher, Philip Delff}
37
\note{
5 pdel 38
}
6 pdel 39
\seealso{bdgraphics, bdp, bdopen, bd.devoff}
5 pdel 40
\examples{
41
bdp(file="test.ps")
42
bdopen()
43
bdplot(1:10,rnorm(10))
44
bdxyadd(1:10,rnorm(10),col=2)
45
bd.devoff()
46
  }
47
 
48
% Add one or more standard keywords, see file 'KEYWORDS' in the
49
% R documentation directory.
7 pdel 50
\keyword{iplot}
5 pdel 51
 
6 pdel 52