Jittering really means just adding random noise to a vector of numerical values, by default this is done in a jittery function by drawing samples from a uniform distribution. The range of values ββin jitter is selected according to the data if a quantity parameter is not provided.
I think the term βjitterβ covers other distributions than homogeneous ones, and is usually used to better visualize overlapping values, such as integer covariates. This helps to understand where the density of observations is high. It is useful to mention figures in the legend if some of the meanings were trembling, even if it is obvious. Here is an example of a visualization with a jitter function, as well as a normal distribution, jitter, where I randomly threw out the value sd = 0.1:
n <- 500 set.seed(1) dat <- data.frame(integer = rep(1:3, each=n), continuous = c(rnorm(n, mean=1), rnorm(n, mean=2), rnorm(n, mean=3))^2) par(mfrow=c(3,1)) plot(dat, main="No jitter for x-axis", xlab="Integer", ylab="Continuous") plot(jitter(dat[,1]), dat[,2], main="Jittered x-axis (uniform distr.)", xlab="Integer", ylab="Continuous") plot(dat[,1]+rnorm(3*n, sd=0.1), dat[,2], main="Jittered x-axis (normal distr.)", xlab="Integer", ylab="Continuous")

source share