hierfly              package:clusterfly              R Documentation

_H_i_e_r_f_l_y, _a _m_e_t_h_o_d _f_o_r _v_i_s_u_a_l_i_s_a_t_i_o_n _h_i_e_r_a_r_c_h_i_c_a_l _c_l_u_s_t_e_r_i_n_g.

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

     This method supplements a data set with information needed to draw
     a dendrogram

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

     hierfly(data, metric="euclidean", method="average")

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

    data: data set

  metric: distance metric to use, see 'dist' for list of possibilities

  method: cluster distance measure to use, see 'hclust' for details

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

     Intermediate cluster nodes are added as needed, and positioned at
     the centroid of the combined clusters.

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

     Hadley Wickham <h.wickham@gmail.com>

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

     'cut.hierfly', 'ggobi.hierfly'

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

     h <- hierfly(iris)
     ggobi(h)
     h <- hierfly(iris, method="single")

