Nemaspec           package:marelacTeaching           R Documentation

_N_e_m_a_t_o_d_e _s_p_e_c_i_e_s _c_o_m_p_o_s_i_t_i_o_n _o_f _6 _d_e_e_p-_s_e_a _s_e_d_i_m_e_n_t_s _i_n _t_h_e _M_e_d_i_t_e_r_r_a_n_e_a_n

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

     Dataset of (Soetaert et al., 1991) with nematode species densities
     in Mediterranean deep-sea sediments, at depths ranging from 160 m
     to 1220 m.

     The densities are expressed in individuals per 10 cm2.

     Nematodes are small free-living worms (<1mm long), generally very
     abundant in all aquatic sediments.

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

     Nemaspec

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

     a data.frame, with stations as columns, species as rows.

     There are 6 stations, for each station two replicates.

     The stationname refers to the depth of the sediment and the
     replicate, e.g. M160b is a station at 160 metres depth, replicate
     b)

_N_o_t_e:

     The densities are non-integer values.

     Species are called "Genus spname"; as most species are
     undescribed, they are called "Genus M1", "Genus M2", etc...

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

     Karline Soetaert <k.soetaert@nioo.knaw.nl>

_R_e_f_e_r_e_n_c_e_s:

     Soetaert, K., Heip, C. and M. Vincx, 1991. Diversity of nematode
     assemblages along a mediterranean deep-sea transect. Marine
     Ecology Progress Series 75, 275-282.

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

     head(Nemaspec)
     # select densities of species present in M160b
     st160b<-data.frame(Nemaspec$SPECIES,dens=Nemaspec$M160b)
     st160b<-st160b[st160b$dens!=0,]

     plot(cumsum(rev(sort(st160b$dens)/sum(st160b$dens))),
          main="dominance curve",
          xlab="species rank",ylab="cum freq")

