Skip to content

Is it possible to calculate the semivariances of a variogram between one specific point and all other points in space?

2 messages · Laura Wette, Edzer Pebesma

#
The variogram cloud might be what you're looking for. In the output
table, all individual point pairs (up to some spatial separation
distance) are reported, and identified by columns "left" and "right".
Selecting a point (last example) needs coercion to data.frame first.
Loading required package: sp
Loading required package: spacetime
Loading required package: zoo

Attaching package: ?zoo?

The following object(s) are masked from ?package:base?:

    as.Date, as.Date.numeric

Loading required package: xts
dist       gamma dir.hor dir.ver   id left right
1   70.83784 0.006065804       0       0 var1    2     1
2  118.84864 0.109534743       0       0 var1    3     1
3  141.56624 0.167153095       0       0 var1    3     2
4  259.23927 0.952808244       0       0 var1    4     1
5  282.85155 1.110920725       0       0 var1    4     2
6  143.17123 0.416229664       0       0 var1    4     3
7  366.31407 0.890852716       0       0 var1    5     1
8  362.64032 1.043938763       0       0 var1    5     2
9  251.02390 0.375633672       0       0 var1    5     3
10 154.26276 0.001041290       0       0 var1    5     4
dist       gamma dir.hor dir.ver   id left right
1   70.83784 0.006065804       0       0 var1    2     1
2  118.84864 0.109534743       0       0 var1    3     1
4  259.23927 0.952808244       0       0 var1    4     1
7  366.31407 0.890852716       0       0 var1    5     1
11 473.62960 0.833549786       0       0 var1    6     1
16 258.32151 0.586528972       0       0 var1    7     1
22 252.04960 0.426115526       0       0 var1    8     1
29 380.18943 0.583407369       0       0 var1    9     1
37 471.00849 1.479252663       0       0 var1   10     1
46 510.07548 1.424283374       0       0 var1   11     1
On 09/07/2012 11:52 AM, Laura Wette wrote: