search for: all_plots

Displaying 1 result from an estimated 1 matches for "all_plots".

2013 Jul 20
2
Different x-axis scales using c() in latticeExtra
...)") } ) pred3_plot <- xyplot(response ~ predictor3, scales = list(y = list(log = TRUE, equispaced.log = FALSE)), panel = function(x, y, ...) { panel.xyplot(x, y, type = c("p", "r"), cex = 2) panel.text(x = 22, y = log10(120), labels = "(c)") } ) all_plots <- c(pred1_plot, pred2_plot, pred3_plot, layout = c(3, 1), x.same = F) update(all_plots, xlab=c("Predictor 1","Predictor 2", "Predictor 3"), scales = list(y=list(log=T, equispaced.log=FALSE), x = c(list(log=T, equispaced.log=FALSE), list(log=T, equispaced.log=FALSE)...