correlogram             package:spatial             R Documentation

_C_o_m_p_u_t_e _S_p_a_t_i_a_l _C_o_r_r_e_l_o_g_r_a_m_s

_D_e_s_c_r_i_p_t_i_o_n:

     Compute spatial correlograms of spatial data or residuals.

_U_s_a_g_e:

     correlogram(krig, nint, plotit = TRUE,  ...)

_A_r_g_u_m_e_n_t_s:

    krig: trend-surface or kriging object with columns 'x', 'y', and
          'z' 

    nint: number of bins used 

  plotit: logical for plotting 

     ...: parameters for the plot 

_D_e_t_a_i_l_s:

     Divides range of data into 'nint' bins, and computes the
     covariance for pairs with separation in each bin, then divides by
     the variance. Returns results for bins with 6 or more pairs.

_V_a_l_u_e:

     'x' and 'y' coordinates of the correlogram, and 'cnt', the number
     of pairs averaged per bin.

_S_i_d_e _E_f_f_e_c_t_s:

     Plots the correlogram if 'plotit = TRUE'.

_R_e_f_e_r_e_n_c_e_s:

     Ripley, B. D. (1981) _Spatial Statistics._ Wiley.

     Venables, W. N. and Ripley, B. D. (2002) _Modern Applied
     Statistics with S._ Fourth edition.  Springer.

_S_e_e _A_l_s_o:

     'variogram'

_E_x_a_m_p_l_e_s:

     data(topo, package="MASS")
     topo.kr <- surf.ls(2, topo)
     correlogram(topo.kr, 25)
     d <- seq(0, 7, 0.1)
     lines(d, expcov(d, 0.7))

