grf
.## S3 method for class 'grf':
plot(x, model.line = TRUE, plot.locations = FALSE, \dots)
grf
, typically an output of the function
grf
.TRUE
the true variogram model is added to the
plot with the sample variogram(s).TRUE
a plot with data locations is
also shown.grf
for simulation of Gaussian random fields,
plot.variogram
for plotting empirical variogram,
variog
for computation of empirical variograms and
plot
for the generic plotting function.op <- par(no.readonly = TRUE)
par(mfrow=c(2,1))
sim1 <- grf(100, cov.pars=c(10, .25))
# generates simulated data
plot(sim1, plot.locations = TRUE)
#
# plots the locations and the sample true variogram model
#
par(mfrow=c(1,1))
sim2 <- grf(100, cov.pars=c(10, .25), nsim=10)
# generates 10 simulated data
plot(sim1)
# plots sample variograms for all simulations with the true model
par(op)
Run the code above in your browser using DataLab