Skip to content
Prev 2617 / 29559 Next

directional semivariograms on the same graph

Mauricio, it's easier than you think; try

Zn.vgm1 <- variogram(Zn~1, jura.pred.xy, alpha=c(22.5, 67.5), cutoff=2,  
boundaries=c(0.1, 0.2*(1:10)), tol.hor=22.5)

plot(Zn.vgm1) # with 2 panels
plot(Zn.vgm1, multipanel=FALSE) # in a single panel

the add=TRUE does not work as the plot methods for gstat variograms uses 
xyplot in lattice. You can of course change the variogram into a 
data.frame and then use base plot methods.
--
Edzer
Mauricio Zambrano wrote: