clustOutput-class        package:MLInterfaces        R Documentation

_C_l_a_s_s "_c_l_u_s_t_O_u_t_p_u_t" _c_o_n_t_a_i_n_e_r _f_o_r _c_l_u_s_t_e_r _a_n_a_l_y_s_i_s _r_e_s_u_l_t_s

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

     container for cluster analysis results

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     Objects can be created by calls of the form 'new("clustOutput",
     ...)'.

_S_l_o_t_s:


     '_c_l_u_s_t_I_n_d_i_c_e_s': Object of class 'MLLabel'  

     '_c_l_u_s_t_S_c_o_r_e_s': Object of class 'MLScore', when a numerical figure
          of clustering is available  

     '_m_e_t_h_o_d': Object of class '"character"' tag indicating name of
          procedure 

     '_R_O_b_j_e_c_t': Object of class '"ANY"' unprocessed output of the
          clustering function 

     '_c_a_l_l': Object of class '"call"' audit of the call that created
          the object 

     '_d_i_s_t_M_a_t': Object of class '"dist"' distance among objects 

_E_x_t_e_n_d_s:

     Class '"MLOutput"', directly.

_M_e_t_h_o_d_s:


     _s_h_o_w 'signature(object = "clustOutput")': concise report 

     _s_i_l_h_o_u_e_t_t_e_B 'signature(out = "clustOutput")': compute the
          'silhouette' object corresponding to the partition 

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

     VJ Carey <stvjc@channing.harvard.edu>

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

     '"classifOutput"'

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

     showClass("clustOutput")

      library(golubEsets)
      data(Golub_Merge)
      train <- c(sample(1:47, 23), sample(48:72, 12))
      agOut <- agnesB(Golub_Merge[100:200,], 3)
      agOut
      sil.ag <- silhouetteB(agOut)
      plot(sil.ag, main="Silhouette Plot for Agnes Clustering")

