saveDfRda package:reposTools R Documentation _A _f_u_n_c_t_i_o_n _t_o _s_a_v_e _a _r_e_p_o_s_i_t_o_r_y _d_a_t_a_f_r_a_m_e _f_i_l_e _D_e_s_c_r_i_p_t_i_o_n: This function is utilized to provide a uniform name of the dataframe object (reposDF) stored in the repdatadesc.rda file. _U_s_a_g_e: saveDfRda(reposDF, outFile = "repdatadesc.rda") _A_r_g_u_m_e_n_t_s: reposDF: The repository data.frame outFile: The name of the file to store it in _D_e_t_a_i_l_s: By protocol, all repository data.frames should have the name 'reposDF' when stored in the repdatadesc file. As such, this function provides a wrapper to force this naming convention. Also by convention, in a repository setting the filename is "repdatadesc.rda", so one should not deviate from teh defaults. _A_u_t_h_o_r(_s): Jeff Gentry _S_e_e _A_l_s_o: 'buildPkgDf' _E_x_a_m_p_l_e_s: z <- tempfile() data(sampleRepos) saveDfRda(reposDF,z) unlink(z)