par(mfrow()) not working with krig maps

1k Views Asked by At

I am having a problem with lining up my krig maps side by side. I've tried split.screen, par(mfrow()) and par(mfcol()) to no avail. The same problem occurred when trying to line up spatial point patterns... I'm using a bunch of packages to produce these graphs so maybe that's the problem.

This is my code. Pretty simple stuff that hasn't caused me problems in the past

library(Rcmdr)
library(sp)
library(gstat)
library(geoR)
library(tcltk)
library(spatstat)
library(sgeostat)

x11()
par(mfrow=c(2,3))
plot(K20)
plot(K60)
plot(K90)
par(mfrow=c(1,1))

Thanks! nm

0

There are 0 best solutions below