The strip argument to panel.xyplot seems to be ignored for
single-panel plots.
The workaround is to give it a one-level factor:
library(lattice)
data(Chem97, package = "mlmRev")
Chem97$what = as.factor("strip text")
densityplot(~ gcsescore|what, data = Chem97)
Thank you. That works.
John
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.