File: exAM.Rd

package info (click to toggle)
robustbase 0.91-1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,080 kB
  • ctags: 645
  • sloc: fortran: 3,156; ansic: 2,731; makefile: 1
file content (36 lines) | stat: -rw-r--r-- 1,020 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
\name{exAM}
\alias{exAM}
\docType{data}
\title{Example Data of Antille and May - for Simple Regression}
\description{
  This is an artificial data set, cleverly construced and used by
  Antille and May to demonstrate \sQuote{problems} with LMS and LTS.
}
\usage{data(exAM)}
\format{
  A data frame with 12 observations on 2 variables, \code{x} and \code{y}.
}
\details{
  Because the points are not in general position, both LMS and LTS
  typically \emph{fail}; however, e.g., \code{\link[MASS]{rlm}(*,
    method="MM")} \dQuote{works}.
}
\source{
  Antille, G. and El May, H. (1992)
  The use of slices in the LMS and the method of density slices:
  Foundation and comparison.\cr
  In Yadolah Dodge and Joe Whittaker, editors, \emph{COMPSTAT:
  Proc. 10th Symp. Computat. Statist., Neuchatel}, \bold{1}, 441--445;
  Physica-Verlag.
}
% \references{
%   ~~ possibly secondary sources and usages ~~
% }
\examples{
data(exAM)
plot(exAM)
summary(ls <- lm(y ~ x, data=exAM))
abline(ls)
}
\keyword{robust}
\keyword{datasets}