relibrary              package:R.utils              R Documentation

_R_e_l_o_a_d_s _a _p_a_c_k_a_g_e

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

     Reloads a package. This function works exactly the same as
     'library', _except_ that it is reloads the package if it already
     loaded. This is useful for developers. For more information see
     'library'.

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

     relibrary(package, character.only=FALSE, warn.conflicts=FALSE, ...)

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

 package: Name or 'character' string giving the name of a package.

character.only: A 'logical' indicating whether 'package' can be assumed
          to be character strings.

warn.conflicts: If 'TRUE', warnings are printed about conflicts from
          reattaching of the package, unless that package contains an
          object '.conflicts.OK'.

     ...: Any other arguments that 'library'() takes.

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

     While relibrary is reloading a package the option 'relibrary' will
     be set to name of the package currently reloaded. This can be
     useful if the package to be reloaded would like save away data
     until it is loaded again.

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

     Henrik Bengtsson (<URL: http://www.braju.com/R/>)

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

     See 'library'().

