Switching off labeling globally with lattice R -
is there way switch off labelling of plots globally before "print"?
here in detail mean + reproducible example:
data <- data.frame(x=rnorm(10,2,2),y=rnorm(10,3,3)) x1 <- xyplot(x~y, data, xlab="name", ylab="name", main="title") print(x1)
is there way switch off labelling @ "print" level or better @ grid.arrange level?
grid.arrange(x1,x2,x3,x4, ncol=2)
now simplified version. have large number of plots , use grid.arrange() plot them in "1 window". labelling required not. mean removing labelling @ xyplot level etc.
Comments
Post a Comment