tmd                 package:lattice                 R Documentation

_T_u_k_e_y _M_e_a_n-_D_i_f_f_e_r_e_n_c_e _P_l_o_t

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

     Create Tukey Mean-Difference Plots from a trellis object returned
     by 'xyplot' and 'qq'

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

     tmd(object,
         xlab = "mean",
         ylab = "difference",
         panel = "panel.tmd",
         prepanel = "prepanel.default.tmd",
         ...)

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

  object: An object of class ``trellis'' returned by 'xyplot' or 'qq' 

    xlab: x label

    ylab: y label

   panel: panel function to be used 

prepanel: prepanel function used to recalculate limits using the
          modified 'x, y' values 

     ...: other arguments

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

     The Tukey Mean-difference plot is produced by modifying the (x,y)
     values of each panel as follows: the new coordinates are given by
     'x=(x+y)/2, y=y-x'.

     'tmd' uses the 'update' method for ``trellis'' objects, which
     processes all extra arguments supplied to 'tmd'.

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

     An object of class ``trellis''. The `update' method can be used to
     update components of the object and the `print' method (usually
     called by default) will plot it on an appropriate plotting device.

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

     Deepayan Sarkar deepayan@stat.wisc.edu

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

     'panel.tmd', 'xyplot', 'Lattice'

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

     data(singer)
     tmd(qqmath(~height|voice.part, data = singer))

