Skip to content
Prev 4461 / 29559 Next

Error in fit.variogram in gstatVariogram recalled from file

Hi Cora,

A mucht better way of storing R-objects in files is through the use of 
the save() command. The load() command is the equivalent to reload the 
file. Example in code:

vmodel = vgm(10, "Exp", 300, 4.5)
save(vmodel, file = "vmodel.rda")

# reloading the file
load("vmodel.rda")

see ?save and ?load for more details.

cheers,
Paul
Cora Shea wrote: