parcoord                package:MASS                R Documentation

_P_a_r_a_l_l_e_l _C_o_o_r_d_i_n_a_t_e_s _P_l_o_t

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

     Parallel coordinates plot

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

     parcoord(x, col = 1, lty = 1, var.label = FALSE, ...)

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

       x: a matrix or data frame who columns represent variables. 
          Missing values are allowed. 

     col: A vector of colours, recycled as necessary for each
          observation. 

     lty: A vector of line types, recycled as necessary for each
          observation. 

var.label: If 'TRUE', each variable's axis is labelled with maximum and
          minimum values. 

     ...: Further graphics parameters which are passed to 'matplot'. 

_S_i_d_e _E_f_f_e_c_t_s:

     a parallel coordinates plots is drawn.

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

     B. D. Ripley.  Enhancements based on ideas and code by Fabian
     Scheipl.

_R_e_f_e_r_e_n_c_e_s:

     Wegman, E. J. (1990) Hyperdimensional data analysis using parallel
     coordinates. _Journal of the American Statistical Association_
     *85*, 664-675.

     Venables, W. N. and Ripley, B. D. (2002) _Modern Applied
     Statistics with S._ Fourth edition.  Springer.

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

     parcoord(state.x77[, c(7, 4, 6, 2, 5, 3)])

     ir <- rbind(iris3[,,1], iris3[,,2], iris3[,,3])
     parcoord(log(ir)[, c(3, 4, 2, 1)], col = 1 + (0:149)%/%50)

