burnin                  package:XDE                  R Documentation

_I_n_d_i_c_a_t_o_r _f_o_r _r_u_n_n_i_n_g _a _M_C_M_C _b_u_r_n_i_n

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

     When 'TRUE', log files from MCMC chains are not written to file.
     When 'FALSE', log files are written for every parameter by
     default.

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

     burnin(object)

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

  object: An object of class 'XdeParameter' 

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

     logical

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

     R. Scharpf

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

     'XdeParameter-class'

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

     data(expressionSetList)
     params <- new("XdeParameter", phenotypeLabel="adenoVsquamous",
                   esetList=expressionSetList)

     ##the replacement method for burnin is called for its side effect of
     ##providing default values of storing MCMC chains
     output(params)[2:22]
     burnin(params) <- FALSE
     output(params)[2:22]
     burnin(params) <- TRUE
     output(params)[2:22]

