splitDFstrings package:reposTools R Documentation _A _f_u_n_c_t_i_o_n _t_o _s_p_l_i_t _v_e_c_t_o_r _s_t_r_i_n_g_s _i_n _a _d_a_t_a._f_r_a_m_e _D_e_s_c_r_i_p_t_i_o_n: Given a data.frame and a set of fields, will take any "string of strings" (e.g. "foo, blah, bar") and split them into a vector of strings (e.g. c("foo", "blah", "bar")). _U_s_a_g_e: splitDFstrings(df, fields, delim = ",[[:space:]]*") _A_r_g_u_m_e_n_t_s: df: A data.frame fields: Set of columns (fields) to split delim: Delimiter to split on. Default is ", " _V_a_l_u_e: The data.frame with the specified columns appropriately manipulated. _A_u_t_h_o_r(_s): Jeff Gentry _E_x_a_m_p_l_e_s: a <- data.frame(I("foo, blah")) colnames(a) <- "bar" a splitDFstrings(a,"bar") a$bar