fCumul               package:occugene               R Documentation

_P_a_r_a_m_e_t_r_i_c _F_u_n_c_t_i_o_n _f_o_r _t_h_e _C_u_m_u_l_a_t_i_v_e _O_c_c_u_p_a_n_c_y _D_i_s_t_r_i_b_u_t_i_o_n

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

     Returns values for parameterized cumulative occupancy
     distributions.

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

     fCumul(x,b0,b1,b2)

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

       x: Point to evaluate

      b0: Parameter b0

      b1: Parameter b1

      b2: Parameter b2

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

     Function fitted to the cumulative occupancy distribution for a
     multinomial distribution. Exponential model := b0-b1*exp(-b2*x).

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

     Returns a numeric

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

     Oliver Will owill4@yahoo.com

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

     See the book chapter O. Will (**) in **

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

     x <- 2
     b0 <- 3
     b1 <- 3
     b2 <- 0.01
     val <- fCumul(x,b0,b1,b2)

