
variog4
. The omnidirectional variogram can be also included
in the plot.## S3 method for class 'variog4':
plot(x, omnidirectional=FALSE, same.plot=TRUE, legend = TRUE, \dots)
variog4
, typically an output of the function variog4
.plot
. Typical arguments are col
, lty
,
lwd
. For same.plot = TRUE
the arguments are passed to
the fuvariog4
for variogram calculations and
matplot
for multiple lines plotting.if(is.R()) data(s100)
s100.v4 <- variog4(s100, max.dist=1)
# Plotting variograms for the four directions
plot(s100.v4)
# changing plot options
plot(s100.v4, lwd=2)
plot(s100.v4, lty=1, col=c("darkorange", "darkblue", "darkgreen","darkviolet"))
plot(s100.v4, lty=1, lwd=2)
# including the omnidirectional variogram
plot(s100.v4, omni=TRUE)
# variograms on different plots
plot(s100.v4, omni=TRUE, same=FALSE)
Run the code above in your browser using DataLab