distrExOptions            package:distrEx            R Documentation

_F_u_n_c_t_i_o_n _t_o _c_h_a_n_g_e _t_h_e _g_l_o_b_a_l _v_a_r_i_a_b_l_e_s _o_f _t_h_e _p_a_c_k_a_g_e '_d_i_s_t_r_E_x'

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

     With 'distrExOptions' you can inspect and change  the global
     variables of the package 'distrEx'.

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

     distrExOptions(arg = "missing", value = -1)

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

     arg: the global variable to be shown or changed 

   value: the new value of the global variable 

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

     'distrExOptions()' returns a list of the global variables.\newline
     'distrExOptions(arg=x)' returns the global variable x.\newline
     'distrExOptions(arg=x,value=y)' sets the value of the global
     variable x to y.

_G_l_o_b_a_l _O_p_t_i_o_n_s:

     _M_C_I_t_e_r_a_t_i_o_n_s: number of Monte-Carlo iterations used for crude 
          Monte-Carlo integration. 

     _G_L_I_n_t_e_g_r_a_t_e_T_r_u_n_c_Q_u_a_n_t_i_l_e: If 'integrate' fails and there are 
          infinite integration limits, the function 'GLIntegrate' is 
          called inside of 'distrExIntegrate' with the corresponding
          quantiles  'GLIntegrateTruncQuantile' respectively,   1 -
          'GLIntegrateTruncQuantile' as finite integration limits. 

     _G_L_I_n_t_e_g_r_a_t_e_O_r_d_e_r: The order used for the Gauss-Legendre
          integration inside of 'distrExIntegrate'. 

     _E_l_o_w_e_r_T_r_u_n_c_Q_u_a_n_t_i_l_e: The lower limit of integration used inside of
           'E' which corresponds to the 'ElowerTruncQuantile'-quantile. 

     _E_u_p_p_e_r_T_r_u_n_c_Q_u_a_n_t_i_l_e: The upper limit of integration used inside of
           'E' which corresponds to the
          (1-'ElowerTruncQuantile')-quantile. 

     _E_r_e_l_a_t_i_v_e_T_o_l_e_r_a_n_c_e: The relative tolerance used inside of 'E' when
          calling 'distrExIntegrate'. 

     _m_1_d_f_L_o_w_e_r_T_r_u_n_c_Q_u_a_n_t_i_l_e: The lower limit of integration used inside
           of 'm1df' which corresponds to the
          'm1dfLowerTruncQuantile'-quantile. 

     _m_1_d_f_R_e_l_a_t_i_v_e_T_o_l_e_r_a_n_c_e: The relative tolerance used inside of
          'm1df' when calling 'distrExIntegrate'. 

     _m_2_d_f_L_o_w_e_r_T_r_u_n_c_Q_u_a_n_t_i_l_e: The lower limit of integration used inside
           of 'm2df' which corresponds to the
          'm2dfLowerTruncQuantile'-quantile. 

     _m_2_d_f_R_e_l_a_t_i_v_e_T_o_l_e_r_a_n_c_e: The relative tolerance used inside of
          'm2df' when calling 'distrExIntegrate'. 

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

     Matthias Kohl Matthias.Kohl@stamats.de

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

     distrExOptions()
     distrExOptions("ElowerTruncQuantile")
     distrExOptions("ElowerTruncQuantile", 1e-6)
     # or
     distrExOptions(ElowerTruncQuantile)
     distrExOptions(ElowerTruncQuantile, 1e-6)

