dnorMix               package:nor1mix               R Documentation

_N_o_r_m_a_l _M_i_x_t_u_r_e _D_e_n_s_i_t_y

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

     Evaluate the density function of the normal mixture specified as
     'norMix' object.

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

     dnorMix(obj, x = NULL, xlim = NULL, n = 511)

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

     obj: an object of class 'norMix'.

       x: numeric vector with abscissa values where to evaluate the
          density. Default is constructed from 'n' (and 'xlim' if
          specified).

    xlim: range of abscissa values, used if 'x == NULL'.  By default,
          xlim taken as mean plus/minus 3 standard deviations of the
          normal mixture.

       n: number of abscissa values to generate if 'x' is not
          specified.

_V_a_l_u_e:

     A list with components 

       x: the abscissa values.

       y: the density f(x) at 'x'.

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

     'rnorMix' for random number generation, and 'norMix' for the
     construction and further methods, particularly 'plot.norMix' which
     makes use 'dnorMix'.

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

      ff <- dnorMix(MW.nm7)
      str(ff)
      plot(ff, type = "h") # rather use plot(ff, ...)

