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)
Public domain This chart is ineligible for copyright and therefore in the public domain, because it consists entirely of information that is common property and contains no original authorship. For more information, see Commons:Threshold of originality § Charts

العربية | Deutsch | English | español | français | italiano | 日本語 | македонски | română | русский | slovenščina | 中文(简体) | 中文(繁體) | +/−

Category:PD chart#BivariateOutlier.svg
I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#BivariateOutlier.svg
Category:Self-published work
Other versions File:BivariateOutlier.png
SVG development
InfoField
Source code
InfoField

R code

n <- 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)
Category:Scatterplots Category:Box plots Category:Outliers
Category:Box plots Category:CC-Zero Category:Outliers Category:PD chart Category:Scatterplots Category:Self-published work Category:Valid SVG created with R code Category:Vectorizations