distrTEstoptions          package:distrTEst          R Documentation

_f_u_n_c_t_i_o_n_s _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_T_E_s_t'

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

     With 'distrTEstoptions' and 'getdistrTEstOption' you may inspect
     and change the global variables used by package 'distrTEst'.

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

     distrTEstoptions(...)
     getdistrTEstOption(x)

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

     ...: any options can be defined, using name = value or by passing
          a list of such tagged values. 

       x: a character string holding an option name.

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

     Invoking 'distrTEstoptions()' with no arguments returns a list
     with the current values of the options.   To access the value of a
     single option, one should use
     'getdistrTEstOption("MaxNumberofSummarizedEvaluations")',  e.g.,
     rather than 'distroptions("MaxNumberofSummarizedEvaluations")'
     which is a _list_ of length one.

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

     'distrTEstoptions()' returns a list of the global options of
     'distrTEst'. 
      'distrTEstoptions("MaxNumberofSummarizedEvaluations")' returns 
     the global option 'MaxNumberofSummarizedEvaluations' as a list of
     length 1. 
      'distrTEstoptions("MaxNumberofSummarizedEvaluations" = 3)' sets
     the value of the global option  'MaxNumberofSummarizedEvaluations'
     to 3.  'getdistrTEstOption("MaxNumberofSummarizedEvaluations")'
     the current value set for option
     'MaxNumberofSummarizedEvaluations'.

_C_u_r_r_e_n_t_l_y _a_v_a_i_l_a_b_l_e _o_p_t_i_o_n_s:

     _M_a_x_N_u_m_b_e_r_o_f_P_l_o_t_t_e_d_E_v_a_l_u_a_t_i_o_n_s maximal number of evaluations
          plotted; defaults to 6

     _M_a_x_N_u_m_b_e_r_o_f_P_l_o_t_t_e_d_E_v_a_l_u_a_t_i_o_n_D_i_m_s maximal number of evaluation
          dimensions plotted in parallel; defaults to 6

     _M_a_x_N_u_m_b_e_r_o_f_S_u_m_m_a_r_i_z_e_d_E_v_a_l_u_a_t_i_o_n_s maximal number of evaluations
          summarized in parallel; defaults to 15 

     _M_a_x_N_u_m_b_e_r_o_f_P_r_i_n_t_e_d_E_v_a_l_u_a_t_i_o_n_s maximal number of evaluations
          printed in parallel; defaults to 15 

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

     Peter Ruckdeschel Peter.Ruckdeschel@uni-bayreuth.de

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

     'options', 'getOption', 'distroptions', 'getdistrOption'

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

     distrTEstoptions()
     distrTEstoptions("MaxNumberofPlottedEvaluationDims")
     distrTEstoptions("MaxNumberofPlottedEvaluationDims" = 5)
     # or
     getdistrTEstOption("MaxNumberofPlottedEvaluationDims")

