display-methods          package:goCluster          R Documentation

_D_i_s_p_l_a_y _a _v_i_s_u_a_l_i_z_a_t_i_o_n _m_o_d_u_l_e

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

     This method can be used on a 'goCluster'-object. It will relay the
     call to the visualization sub-object of the 'goCluster'-object.
     This will display the results prepared by the visualization
     classes.

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

     _o_b_j_e_c_t = "_g_o_C_l_u_s_t_e_r" The method should only be called with a
          'goCluster'-object even though it is also defined for the
          visualization modules. .in -5 

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

     Gunnar Wrobel, <URL: http://www.gunnarwrobel.de>.

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

     'clusterModule-class'.

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

     set.seed(1000)

     data(benomylsetupsmall)

     benomylsetupsmall$classalgo <- "clusterAlgorithmHclust"
     benomylsetupsmall$algo$method   <- "complete"
     benomylsetupsmall$algo$distance <- "euclidean"

     benomylsetupsmall$classvisu <- "clusterVisualHclust"

     a <- new("goCluster")

     execute(a) <- benomylsetupsmall

     if(interactive()){
     ## This example can only be run in an interactive mode

     display(a, selection = 1)
     }

