plantTraits         package:cluster         R Documentation(latin1)

_P_l_a_n_t _S_p_e_c_i_e_s _T_r_a_i_t_s _D_a_t_a

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

     This dataset constitutes a description of 136 plant species
     according to biological attributes (morphological or reproductive)

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

     data(plantTraits)

_F_o_r_m_a_t:

     A data frame with 136 observations on the following 31 variables.

     '_p_d_i_a_s' Diaspore mass (mg)

     '_l_o_n_g_i_n_d_e_x' Seed bank longevity

     '_d_u_r_f_l_o_w' Flowering duration

     '_h_e_i_g_h_t' Plant height, an ordered factor with levels '1' < '2' <
          ... < '8'.

     '_b_e_g_f_l_o_w' Time of first flowering, an ordered factor with levels
          '1' < '2' < '3' < '4' < '5' < '6' < '7' < '8' < '9'

     '_m_y_c_o_r' Mycorrhizas, an ordered factor with levels '0'never < '1'
          sometimes< '2'always

     '_v_e_g_a_e_r' aerial vegetative propagation, an ordered factor with
          levels '0'never < '1' present but limited< '2'important.

     '_v_e_g_s_o_u_t' underground vegetative propagation, an ordered factor
          with 3 levels identical to 'vegaer' above.

     '_a_u_t_o_p_o_l_l' selfing pollination, an ordered factor with levels
          '0'never < '1'rare < '2' often< the rule'3'

     '_i_n_s_e_c_t_s' insect pollination, an ordered factor with 5 levels '0'
          < ... < '4'.

     '_w_i_n_d' wind pollination, an ordered factor with 5 levels '0' < ...
          < '4'.

     '_l_i_g_n' a binary factor with levels '0:1', indicating if plant is
          woody.

     '_p_i_q' a binary factor indicating if plant is thorny.

     '_r_o_s' a binary factor indicating if plant is rosette.

     '_s_e_m_i_r_o_s' semi-rosette plant, a binary factor ('0': no; '1': yes).

     '_l_e_a_f_y' leafy plant, a binary factor.

     '_s_u_m_a_n' summer annual, a binary factor.

     '_w_i_n_a_n' winter annual, a binary factor.

     '_m_o_n_o_c_a_r_p' monocarpic perennial, a binary factor.

     '_p_o_l_y_c_a_r_p' polycarpic perennial, a binary factor.

     '_s_e_a_s_a_e_s' seasonal aestival leaves, a binary factor.

     '_s_e_a_s_h_i_v' seasonal hibernal leaves, a binary factor.

     '_s_e_a_s_v_e_r' seasonal vernal leaves, a binary factor.

     '_e_v_e_r_a_l_w' leaves always evergreen, a binary factor.

     '_e_v_e_r_p_a_r_t_i' leaves partially evergreen, a binary factor.

     '_e_l_a_i_o' fruits with an elaiosome (dispersed by ants), a binary
          factor.

     '_e_n_d_o_z_o_o' endozoochorous fruits, a binary factor.

     '_e_p_i_z_o_o' epizoochorous fruits, a binary factor.

     '_a_q_u_a_t' aquatic dispersal fruits, a binary factor.

     '_w_i_n_d_g_l' wind dispersed fruits,  a binary factor.

     '_u_n_s_p' unspecialized mechanism of seed dispersal, a binary factor.

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

     Most of factor attributes are not disjunctive. For example, a
     plant can be usually pollinated by insects but sometimes
     self-pollination can occured.

_S_o_u_r_c_e:

     Vallet, Jeanne (2005) _Structuration de communauts vgtales et
     analyse comparative de traits biologiques le long d'un gradient
     d'urbanisation_. Mmoire de Master 2
     'Ecologie-Biodiversit-Evolution'; Universit Paris Sud XI, 30p.+
     annexes (in french)

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

     data(plantTraits)

     ## Calculation of a dissimilarity matrix
     library(cluster)
     dai.b <- daisy(plantTraits,
                    type = list(ordratio = 4:11, symm = 12:13, asymm = 14:31))

     ## Hierarchical classification
     agn.trts <- agnes(dai.b, method="ward")
     plot(agn.trts, which.plots = 2, cex= 0.6)
     plot(agn.trts, which.plots = 1)
     cutree6 <- cutree(agn.trts, k=6)
     cutree6

     ## Principal Coordinate Analysis
     cmdsdai.b <- cmdscale(dai.b, k=6)
     plot(cmdsdai.b[, 1:2], asp = 1, col = cutree6)

