

_M_e_d_i_a_n _P_o_l_i_s_h _o_f _a _M_a_t_r_i_x

     medpolish(x, eps=0.01, maxiter=10)

     plot(medpolish.obj)
     print(medpolish.obj)

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

     `medpolish' fits an additive constant-plus-rows-plus-
     columns model to the values given in `x' using Tukey's
     median polish procedure.

     Sweeping out for row and column effects continues until
     the proportional reduction in the sum of absolute resi-
     duals is less than `eps' or until the have been `max-
     iter' iterations.  The sum of absolute residuals is
     printed at each iteration of the fitting process.

     The value returned by `medpolish' is an object of class
     `medpolish'.  Printing and plotting methods are defined
     for this class, and can be invoked via the generic
     functions `print' and `plot'.

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

     An object of class `medpolish' with the following named
     components:

 overall: the fitted constant term.

     row: the fitted row effects.

     col: the fitted column effects.

residuals: the residuals.

    name: the name of the dataset.

