Re: [R-sig-Geo] Error in fit.variogram in gstatVariogram recalled from file

2008-10-31 Thread Paul Hiemstra
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

[R-sig-Geo] Error in fit.variogram in gstatVariogram recalled from file

2008-10-29 Thread Cora Shea
Dear List, In the hopes that someone may know why, I will describe an error I get from fit.variogram when reading a variogram from a file. When I create a gstatVariogram object in a given R session, I can use fit.variogram upon it just fine via: > temp.vgm <- variogram(z~x.coord+y.coord, temp.fra