sboptions             package:scaleboot             R Documentation

_O_p_t_i_o_n_s _f_o_r _M_u_l_t_i_s_c_a_l_e _B_o_o_t_s_t_r_a_p

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

     To set and examine global options for 'scaleboot' package.

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

     sboptions(x, value)

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

       x: character of an option name.

   value: When specified, this value is set.

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

     Invoking 'sboptions()' with no arguments returns a list with the
     current values of the options. Otherwise it returns option(s) with
     name(s) specified by 'x'.  When 'value' is specified, it is set to
     the option named 'x'.

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

     Hidetoshi Shimodaira

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

     sboptions() # show all the options
     sboptions("models") # show the default model names
     new.models <- sbmodelnames(m=2) # character vector c("poly.1","poly.2")
     old.models <- sboptions("models",new.models) # set the new model names

