How can I control over sampling in sequential Gaussian simulation?
For example in the following code, how can I guarantee that the Monte Carlo samples are not duplicitous?
library(sp)
library(gstat)
data(meuse)
coordinates(meuse) = ~x+y
data(meuse.grid)
gridded(meuse.grid) = ~x+y
m <- vgm(.59, "Sph", 874, .04)
# ordinary kriging:
x <- krige(zinc~1, meuse, meuse.grid, model = m, nsim=10, debug.level=-1)
I know that the default setting in sample function, is "replace = FALSE" and not to replace the generated samples. Is SGS the same?