File: ellipsesPlot.covfm.Rd

package info (click to toggle)
r-cran-robust 0.7-5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,548 kB
  • sloc: fortran: 11,898; ansic: 741; sh: 13; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,062 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
\name{ellipsesPlot.covfm}
\alias{ellipsesPlot.covfm}

\title{Ellipses Plot - Visual Correlation Matrix Comparison}

\description{
  When there are 3 or more variables in the data, this function produces a matrix with ellipses drawn in the upper triangle.  The ellipse in cell \eqn{i,j} of the plot is drawn to be a contour of a standard bivariate normal with correlation \eqn{\rho_{ij}}.  One ellipse is drawn in each cell for each model in the \code{covfm} object.  When there are 2 variables in the data, this function produces a scatter plot of the data with an overlaid 95\% confidence ellipse for each model in the \code{covfm} object.
}

\usage{
  ellipsesPlot.covfm(x, ...)
}

\arguments{
  \item{x}{a \code{"covfm"} object.}

  \item{\dots}{additional arguments are ignored.}
}

\value{
  x is invisibly returned.
}

\examples{
  data(woodmod.dat)
  woodm.fm <- fit.models(list(Robust = "covRob", Classical = "covClassic"),
                         data = woodmod.dat)
  ellipsesPlot.covfm(woodm.fm)
}

\keyword{hplot}