I use the featurePlot function to create a grid graph. X and Y axes are displayed in diagonal boxes (see Figure). I want to crush these axes - both marks and marks.

Thought I could set the $ draw scales to NULL, but that didn't work. Here is what I tried:
trellisDefaultSettings = trellis.par.get() trellis.par.set(theme=transparentTheme(trans = .4), scales$draw=FALSE, warn=FALSE) featurePlot(x = features[, -1 * ncol(features)], y = features$SpeciesName, plot = "pairs", auto.key = list(columns = 5))
source share