variogram.cloud(formula, data=<<see below>>, subset=<<see below>>, na.action=<<see below>>, azimuth=0, tol.azimuth=90, maxdist=<<see below>>, bandwidth=1e+307, FUN=function(zi, zj) (zi - zj)^2/2))
The return object has an attribute call with an image of the call that produced the object.
If all directions and distances are included the return object will have n*(n-1)/2 rows where n is the number of observations. This can get very large, even for relatively small n. May want to consider limiting the size by setting maxdist. Typically values beyond half the maximum distance in the data are not used in estimating the variogram function.
v1 <- variogram.cloud(coal ~ x + y, data=coal.ash) plot(v1) boxplot(v1)