SOMB              package:MLInterfaces              R Documentation

_A_n _i_n_t_e_r_f_a_c_e _t_o _s_e_l_f-_o_r_g_a_n_i_z_i_n_g _m_a_p _m_e_t_h_o_d_s _f_o_r _e_x_p_r_S_e_t_s

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

     Self-organizing maps are covered in various machine learning
     reviews.  These can be viewed as clustering procedures analogous
     to 'kmeans' but with a constraint on the complexity of the
     subspace in which the cluster-defining prototypes are identified.

     The outputs of 'som' and 'SOM' are not easily formulated as
     'clustOutput-class' instances, so classes that extend 'list' are
     used as output containers.

     SOMB(exprObj, classifLab) somB(exprObj, classifLab)

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

 exprObj: An instance of the 'exprset' class. 

classifLab: A vector of class labels. 

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

     You may pass additional parameters, see 'SOM' or 'som' for
     details.

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

     An object of class 'SOMBoutput' or 'somBoutput'

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

     Jess Mar, VJ Carey <stvjc@channing.harvard.edu>

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

     # access and trim an exprSet
     library(golubEsets)
     data(golubMerge)
     smallG <- golubMerge[1:60,]
     # set a PRNG seed for reproducibilitiy
     set.seed(1234) # needed for nnet initialization
     # now run the classifiers
     somB( smallG, "ALL.AML")
     SOMB( smallG, "ALL.AML")

