tableClass            package:maigesPack            R Documentation

_S_a_v_e _H_T_M_L _o_r _C_S_V _t_a_b_l_e_s _o_f _g_o_o_d _c_l_a_s_s_i_f_i_e_r_s (_c_l_i_q_u_e_s)

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

     This function takes an object of class 'maigesClass' resulting
     from classification analysis and write tables (in HTML or CSV
     format) a table of the cliques, or classifiers.

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

     tableClass(classComp=NULL, file="./class_result",
                type=c("HTML","CSV")[1], nCliques=NULL)

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

classComp: object of class 'maigesClass'.

    file: character string giving the file name to be saved (without
          extension).

    type: character string with the type of file to be saved. Must be
          'HTML' (default) or 'CSV'.

nCliques: integer specifying the number of cliques to be saved. If NULL
          (default) all cliques in the object are saved.

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

     This function don't return any object.

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

     Gustavo H. Esteves <gesteves@vision.ime.usp.br>

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

     'maigesClass', 'classifyLDA', 'classifySVM', 'classifyKNN',
     'classifyLDAsc', 'classifySVMsc' and 'classifyKNNsc'.

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

     ## Loading the dataset
     data(gastro)

     ## Doing LDA classifier with 3 genes for the 6th gene group comparing
     ## the 2 categories from 'Type' sample label.
     gastro.class = classifyLDA(gastro.summ, sLabelID="Type",
       gNameID="GeneName", nGenes=3, geneGrp=6)

     tableClass(gastro.class)

