TrainSafe                package:FKBL                R Documentation

_M_a_k_e_s _a _t_r_a_i_n _s_e_t _s_a_f_e_r

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

     Takes a train set, and makes some transformations to make it
     automatically more compatible for being processed by the package.
     Basically it ensures every variable is a double, and that the
     every class is an integer, which begin at 0.

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

      TrainSafe(train)

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

     Takes the train set.

   train: The train set to be processed.

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

     Returns a safer train set

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

     data(cancer)
     cancer=TrainSafe(cancer)

