MLIclust            package:MLInterfaces            R Documentation

_A_n _i_n_t_e_r_f_a_c_e _t_o _v_a_r_i_o_u_s _u_n_s_u_p_e_r_v_i_s_e_d _m_a_c_h_i_n_e _l_e_a_r_n_i_n_g _m_e_t_h_o_d_s _f_o_r _E_x_p_r_e_s_s_i_o_n_S_e_t_s

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

     This document describes a family of wrappers to R functions that
     perform clustering of multivariate datasets. For example, the
     'kmeansB' function is a wrapper for a call to 'kmeans' for objects
     of class 'ExpressionSet'. The interfaces of 'MLInterfaces' provide
     a common calling sequence and common return value for machine
     learning code.

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

     kmeansB(exprObj, k , iter.max, metric = "euclidean") 

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

 exprObj: An instance of the 'exprset' class. 

       k: The number of clusters

iter.max: The maximum number of iterations to perform.

  metric: See 'knn' for a complete description. 

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

     See 'kmeans' for a complete description, and for other functions
     named [f]B, see the documentation on 'f'.

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

     An object of class 'clustOutput-class'.

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

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

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

     'ldaB'

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

     ##get these from the source files
     library(golubEsets)
     data(Golub_Merge)
     smallG <- Golub_Merge[1:60,]
     set.seed(1234) # needed for nnet initialization
     kmeansB( smallG, k=4 )
     agnesB( smallG, k=5, height=0, FALSE )
     dianaB( smallG, k=5, height=0, FALSE )
     pamB( smallG, k=5, height=0, FALSE )
     bclustB( smallG, k=5, height=0 )
     cmeansB( smallG, k=5, height=0 )
     cshellB( smallG, k=5, height=0 , iter.max=1)
     #lcaB( BsmG, k=3 )
     hclustB( smallG, k=4 )
     hclustB( smallG, height=40000 )

