

correlogram(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 residu-
     als.

_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'.

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

     `variogram'

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

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

