search for: pred2_plot

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

Did you mean: pred1_plot
2013 Jul 20
2
Different x-axis scales using c() in latticeExtra
...4, 70, 60, 75, 78) pred1_plot <- xyplot(response ~ predictor1, scales = list(log = TRUE, equispaced.log = FALSE), panel = function(x, y, ...) { panel.xyplot(x, y, type = c("p", "r"), cex = 2) panel.text(x = log10(8), y = log10(120), labels = "(a)") } ) pred2_plot <- xyplot(response ~ predictor2, scales = list(log = TRUE, equispaced.log = FALSE), panel = function(x, y, ...) { panel.xyplot(x, y, type = c("p", "r"), cex = 2) panel.text(x = log10(2), y = log10(120), labels = "(b)") } ) pred3_plot <- xyplot(respon...