compatibleVersions         package:annotate         R Documentation

_f_u_n_c_t_i_o_n _t_o _c_h_e_c_k _t_o _s_e_e _i_f _t_h_e _p_a_c_k_a_g_e_s _r_e_p_r_e_s_e_n_t_e_d _b_y _t_h_e _n_a_m_e_s
_p_a_s_s_e_d _h_a_v_e _t_h_e _s_a_m_e _v_e_r_s_i_o_n _n_u_m_b_e_r

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

     This function takes the names of installed R packages and then
     checks to see if they all have the same version number.

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

     compatibleVersions(...)

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

     ...: '...' character strings for the names of R packages that have
          been installed

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

     If all the package have the same version number, the function
     returns TRUE. Otherwise, the function returns FALSE

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

     This function returns TRUE or FALSE depending on whether the
     packages have the same version number

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

     Jianhua Zhang

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

     'packageDescription'

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

     if(require("hgu95av2") && require("GO")){
         compatibleVersions("hgu95av2", "GO")
     }

