File:BivariateOutlier.svg
Summary
Description |
English: Shows in the lower right corner an outlier which can not be detected by univariate inspection. |
||||||
Date | |||||||
Source | Sigbert | ||||||
Author |
Vector: Category:Vectorizations |
||||||
Permission (Reusing this file) |
I, the copyright holder of this work, hereby publish it under the following license:
|
||||||
Other versions | File:BivariateOutlier.png | ||||||
SVG development | |||||||
Source code | R coden <- 99
s <- 0.1
x <- runif(n)
y <- x+s*rnorm(n)
x <- c(x, 1)
y <- c(y, 0)
par(mai=c(0,0,0,0))
par(fig=c(0.2, 1, 0.2, 1))
plot(x, y, pch=19, axes=FALSE)
par(fig=c(0.2, 1, 0, 0.2), new=TRUE)
boxplot(x, horizontal=TRUE, axes=FALSE)
par(fig=c(0, 0.2, 0.2, 1), new=TRUE)
boxplot(y, axes=FALSE)
|