heatmapsM             package:maigesPack             R Documentation

_F_u_n_c_t_i_o_n _t_o _p_l_o_t _h_e_a_t_m_a_p_s _s_e_p_a_r_a_t_i_n_g _g_r_o_u_p_s _g_e_n_e_r_a_t_e_d _b_y _S_O_M _o_r
_k-_m_e_a_n_s

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

     This function display individual heatmaps for each group
     constructed by divisive clustering techniques, like SOM or
     k-means. It is possible to add hierarchical dendrograms to each
     group individually.

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

     heatmapsM(data, groups, sampleT=NULL, doHier=FALSE, distfun=dist,
               hclustfun=hclust, ...)

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

    data: numeric matrix to be displayed, including all observations
          from all groups.

  groups: numeric or character vector (with length equal to columns or
          rows of data) with identification of the groups to be
          separated. If numeric must contain the indexes and if
          character must contain the colnames or rownames.

 sampleT: list with 2 vectors, the first one specifying the first
          character of each sample label to be coloured according to
          the colours specified in the second vector.

  doHier: logical indicating to plot or not the hierarchical branch in
          the other dimension of the matrix.

 distfun: the function to be used for distance calculation.

hclustfun: the function for to be used for hierarchical cluster
          calculation.

     ...: additional parameters for 'image' function.

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

     This function is used internally by the functions 'hierM', 'somM'
     and 'kmeansM'. If you want to the hierarchical dendrogram in the
     other dimension, pay attention to the number of observations in
     this dimension, because the calculation of the hierarchical branch
     may be very time consuming!

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

     This function display the heatmaps and don't return any object or
     value.

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

     Elier B. Cristo, addapted by Gustavo H. Esteves
     <gesteves@vision.ime.usp.br>

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

     'hierM', 'somM', 'kmeansM'

