Subversion Repositories bdplot

Rev

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

Rev 5 Rev 20
1
\name{bdlegend}
1
\name{bdlegend}
2
\alias{bdlegend}
2
\alias{bdlegend}
3
%- Also NEED an '\alias' for EACH other topic documented here.
3
%- Also NEED an '\alias' for EACH other topic documented here.
4
\title{ ~~function to do ... ~~ }
4
\title{ ~~function to do ... ~~ }
5
\description{
5
\description{
6
  ~~ A concise (1-5 lines) description of what the function does. ~~
6
  ~~ A concise (1-5 lines) description of what the function does. ~~
7
}
7
}
8
\usage{
8
\usage{
9
bdlegend(legend, prm, cex = prm$cex.legend, pos = prm$pos.legend, bg = prm$bg.legend, ...)
9
bdlegend(legend, prm, cex = prm$cex.legend, pos = prm$pos.legend, bg = prm$bg.legend, ...)
10
}
10
}
11
%- maybe also 'usage' for other objects documented here.
11
%- maybe also 'usage' for other objects documented here.
12
\arguments{
12
\arguments{
13
  \item{legend}{ ~~Describe \code{legend} here~~ }
13
  \item{legend}{ ~~Describe \code{legend} here~~ }
14
  \item{prm}{ ~~Describe \code{prm} here~~ }
14
  \item{prm}{ ~~Describe \code{prm} here~~ }
15
  \item{cex}{ ~~Describe \code{cex} here~~ }
15
  \item{cex}{ ~~Describe \code{cex} here~~ }
16
  \item{pos}{ ~~Describe \code{pos} here~~ }
16
  \item{pos}{ ~~Describe \code{pos} here~~ }
17
  \item{bg}{ ~~Describe \code{bg} here~~ }
17
  \item{bg}{ ~~Describe \code{bg} here~~ }
18
  \item{\dots}{ ~~Describe \code{\dots} here~~ }
18
  \item{\dots}{ ~~Describe \code{\dots} here~~ }
19
}
19
}
20
\details{
20
\details{
21
  ~~ If necessary, more details than the description above ~~
21
  ~~ If necessary, more details than the description above ~~
22
}
22
}
23
\value{
23
\value{
24
  ~Describe the value returned
24
  ~Describe the value returned
25
  If it is a LIST, use
25
  If it is a LIST, use
26
  \item{comp1 }{Description of 'comp1'}
26
  \item{comp1 }{Description of 'comp1'}
27
  \item{comp2 }{Description of 'comp2'}
27
  \item{comp2 }{Description of 'comp2'}
28
  ...
28
  ...
29
}
29
}
30
\references{ ~put references to the literature/web site here ~ }
30
\references{ ~put references to the literature/web site here ~ }
31
\author{ ~~who you are~~ }
31
\author{ ~~who you are~~ }
32
\note{ ~~further notes~~ 
32
\note{ ~~further notes~~ 
33
 
33
 
34
 ~Make other sections like Warning with \section{Warning }{....} ~
34
 ~Make other sections like Warning with \section{Warning }{....} ~
35
}
35
}
36
\seealso{ ~~objects to See Also as \code{\link{help}}, ~~~ }
36
\seealso{ ~~objects to See Also as \code{\link{help}}, ~~~ }
37
\examples{
37
\examples{
38
##---- Should be DIRECTLY executable !! ----
38
##---- Should be DIRECTLY executable !! ----
39
##-- ==>  Define data, use random,
39
##-- ==>  Define data, use random,
40
##--	or do  help(data=index)  for the standard data sets.
40
##--	or do  help(data=index)  for the standard data sets.
41
 
41
 
42
## The function is currently defined as
42
## The function is currently defined as
43
function (legend, prm, cex = prm$cex.legend, pos = prm$pos.legend, 
43
function (legend, prm, cex = prm$cex.legend, pos = prm$pos.legend, 
44
    bg = prm$bg.legend, ...) 
44
    bg = prm$bg.legend, ...) 
45
{
45
{
46
    legend(x = pos, cex = cex, legend = legend, bg = bg, ...)
46
    legend(x = pos, cex = cex, legend = legend, bg = bg, ...)
47
  }
47
  }
48
}
48
}
49
% Add one or more standard keywords, see file 'KEYWORDS' in the
49
% Add one or more standard keywords, see file 'KEYWORDS' in the
50
% R documentation directory.
50
% R documentation directory.
51
\keyword{ ~kwd1 }
51
\keyword{ ~kwd1 }
52
\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
52
\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
53
 
53