mpl                 package:sfsmisc                 R Documentation

_S_i_m_p_l_e _M_a_t_r_i_x _P_l_o_t_s

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

     Do simple matrix plots, providing an easy interface to 'matplot'
     by using a default x variable.

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

     mpl(mat, ...)
     p.m(mat, ...)

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

     mat: numeric matrix.

     ...: further arguments passed to 'matplot', e.g., 'type', 'xlab',
          etc.

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

     'p.m(m)' use the first column of 'm' as x variable, whereas
     'mpl(m)' uses the integers 1, 2, ..., 'nrow(m)' as coordinates and
     'rownames(m)' as axis labels if possible.

_N_o_t_e:

     These were really created for playing around with curves etc, and
     probably should be _deprecated_ since in concrete examples, using
     'matplot()' directly is more appropriate.

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

     Martin Maechler

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

     'matplot', 'plot.mts(*, plot.type = "single")'.

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

     data(animals, package = "cluster")
     mpl(animals, type = "l")

