matchpt               package:Biobase               R Documentation

_N_e_a_r_e_s_t _n_e_i_g_h_b_o_r _s_e_a_r_c_h.

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

     Find the nearest neighbors of a set of query points in the same or
     another set of points in an n-dimensional real vector space, using
     the Euclidean distance.

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

         matchpt(x, y)

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

       x: A matrix (or vector) of coordinates. Each row represents a
          point in an 'ncol(x)'-dimensional real vector space.

       y: Optional, matrix (or vector) with the same number of columns
          as 'x'.

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

     If 'y' is provided, the function searches for each point in 'x'
     its nearest neighbor in 'y'. If 'y' is missing, it searches for
     each point in 'x' its nearest neighbor in 'x', excluding that
     point itself. In the case of ties, only the neighbor with the
     smaller index is given.

     The implementation is simple and of complexity 'nrow(x)' times
     'nrow(y)'. For larger problems, please consider one of the many
     more efficient nearest neighbor search algorithms.

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

     A 'data.frame' with two columns and 'nrow(x)' rows. The first
     column is the index of the nearest neighbor, the second column the
     distance to the nearest neighbor. If 'y' was given, the index is a
     row number in 'y', otherwise, in 'x'. The row names of the result
     are those of 'x'.

_A_u_t_h_o_r(_s):

     Oleg Sklyar osklyar@ebi.ac.uk

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

         a <- matrix(c(2,2,3,5,1,8,-1,4,5,6), ncol=2L, nrow=5L)
         rownames(a) = LETTERS[seq_len(nrow(a))]
         matchpt(a)
         b <- c(1,2,4,5,6)
         d <- c(5.3, 3.2, 8.9, 1.3, 5.6, -6, 4.45, 3.32)
         matchpt(b, d)
         matchpt(d, b)

