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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/scattJitt.R
\name{scattJitt}
\alias{scattJitt}
\title{Bivariate jitter plot}
\usage{
scattJitt(
x,
delimiter = NULL,
col = c("skyblue", "red", "red4", "orange", "orange4"),
alpha = NULL,
cex = par("cex"),
col.line = "lightgrey",
lty = "dashed",
lwd = par("lwd"),
numbers = TRUE,
cex.numbers = par("cex"),
main = NULL,
sub = NULL,
xlab = NULL,
ylab = NULL,
axes = TRUE,
frame.plot = axes,
labels = c("observed", "missing", "imputed"),
...
)
}
\arguments{
\item{x}{a \code{data.frame} or \code{matrix} with two columns.}
\item{delimiter}{a character-vector to distinguish between variables and
imputation-indices for imputed variables (therefore, \code{x} needs to have
\code{\link[=colnames]{colnames()}}). If given, it is used to determine the corresponding
imputation-index for any imputed variable (a logical-vector indicating which
values of the variable have been imputed). If such imputation-indices are
found, they are used for highlighting and the colors are adjusted according
to the given colors for imputed variables (see \code{col}).}
\item{col}{a vector of length five giving the colors to be used in the plot.
The first color will be used for complete observations, the second/fourth
color for missing/imputed values in only one variable, and the third/fifth
color for missing/imputed values in both variables. If only one color is
supplied, it is used for all. Else if two colors are supplied, the second
one is recycled.}
\item{alpha}{a numeric value between 0 and 1 giving the level of
transparency of the colors, or \code{NULL}. This can be used to prevent
overplotting.}
\item{cex}{the character expansion factor for the plot characters.}
\item{col.line}{the color for the lines dividing the plot region.}
\item{lty}{the line type for the lines dividing the plot region (see
\code{\link[graphics:par]{graphics::par()}}).}
\item{lwd}{the line width for the lines dividing the plot region.}
\item{numbers}{a logical indicating whether the frequencies of observed and
missing/imputed values should be displayed (see \sQuote{Details}).}
\item{cex.numbers}{the character expansion factor to be used for the
frequencies of the observed and missing/imputed values.}
\item{main, sub}{main and sub title.}
\item{xlab, ylab}{axis labels.}
\item{axes}{a logical indicating whether both axes should be drawn on the
plot. Use graphical parameter \code{"xaxt"} or \code{"yaxt"} to suppress
just one of the axes.}
\item{frame.plot}{a logical indicating whether a box should be drawn around
the plot.}
\item{labels}{a vector of length three giving the axis labels for the
regions for observed, missing and imputed values (see \sQuote{Details}).}
\item{\dots}{further graphical parameters to be passed down (see
\code{\link[graphics:par]{graphics::par()}}).}
}
\description{
Create a bivariate jitter plot.
}
\details{
The amount of observed and missing/imputed values is visualized by jittered
points. Thereby the plot region is divided into up to four regions
according to the existence of missing/imputed values in one or both
variables. In addition, the amount of observed and missing/imputed values
can be represented by a number.
}
\note{
Some of the argument names and positions have changed with version 1.3
due to extended functionality and for more consistency with other plot
functions in \code{VIM}. For back compatibility, the argument
\code{cex.text} can still be supplied to \code{\dots{}} and is handled
correctly. Nevertheless, it is deprecated and no longer documented. Use
\code{cex.numbers} instead.
}
\examples{
data(tao, package = "VIM")
## for missing values
scattJitt(tao[, c("Air.Temp", "Humidity")])
## for imputed values
scattJitt(kNN(tao[, c("Air.Temp", "Humidity")]), delimiter = "_imp")
}
\references{
M. Templ, A. Alfons, P. Filzmoser (2012) Exploring incomplete
data using visualization tools. \emph{Journal of Advances in Data Analysis
and Classification}, Online first. DOI: 10.1007/s11634-011-0102-y.
}
\seealso{
Other plotting functions:
\code{\link{aggr}()},
\code{\link{barMiss}()},
\code{\link{histMiss}()},
\code{\link{marginmatrix}()},
\code{\link{marginplot}()},
\code{\link{matrixplot}()},
\code{\link{mosaicMiss}()},
\code{\link{pairsVIM}()},
\code{\link{parcoordMiss}()},
\code{\link{pbox}()},
\code{\link{scattMiss}()},
\code{\link{scattmatrixMiss}()},
\code{\link{spineMiss}()}
}
\author{
Matthias Templ, modifications by Andreas Alfons and Bernd Prantner
}
\concept{plotting functions}
\keyword{hplot}
|