Is it possible to place panel labels (i.e. 3gears, 4gears...) at the bottom instead of the top?
# Lattice Examples
library(lattice)
attach(mtcars)
# dotplot for each combination of two factors
dotplot(cyl.f~mpg|gear.f,
main="Dotplot Plot by Number of Gears and Cylinders",
xlab="Miles Per Gallon")
Thanks!