File: origin.Rd

package info (click to toggle)
r-cran-calibrate 1.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 628 kB
  • sloc: makefile: 2
file content (19 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
\name{origin}
\alias{origin}
\title{Origin}
\description{
  Draws coordinate axes in a plot.
}
\usage{origin(m=c(0,0), ...)}
\arguments{
  \item{m}{ the coordinates of the means (2 x 1). }
  \item{\dots}{ other arguments passed on to the \code{lines} function}
}
\author{ Jan Graffelman (jan.graffelman@upc.edu) }
\seealso{\code{\link{lines}}}
\examples{
   X <- matrix(runif(40),ncol=2)
   plot(X[,1],X[,2])
   origin(m=c(mean(X[,1]),mean(X[,2])))
}
\keyword{multivariate}