2.Classes               package:limma               R Documentation

_C_l_a_s_s_e_s _D_e_f_i_n_e_d _b_y _t_h_i_s _P_a_c_k_a_g_e

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

     This package defines the following data classes.

      '_R_G_L_i_s_t'  A class used to store raw intensities as they are read
          in from an image analysis output file, usually by
          'read.maimages'.

      '_M_A_L_i_s_t'  Intensities converted to M-values and A-values, i.e.,
          to with-spot and whole-spot contrasts on the log-scale.
          Usually created from an 'RGList' using 'MA.RG' or
          'normalizeWithinArrays'. Objects of this class contain one
          row for each spot. There may be more than one spot and
          therefore more than one row for each probe.

      '_M_A_r_r_a_y_L_M'  Store the result of fitting gene-wise linear models
          to the normalized intensities or log-ratios. Usually created
          by 'lmFit'. Objects of this class normally contain only one
          row for each unique probe.

      '_T_e_s_t_R_e_s_u_l_t_s'  Store the results of testing a set of contrasts
          equal to zero for each probe. Usually created by
          'decideTests'. Objects of this class normally contain one row
          for each unique probe.

     All these data classes obey many analogies with matrices. In the
     case of 'RGList' and 'MAList', rows correspond to spots and
     columns to arrays. In the case of 'MarrayLM', rows correspond to
     unique probes and the columns to parameters or contrasts. The
     functions 'summary', 'dim', 'length', 'ncol', 'nrow', 'dimnames',
     'rownames', 'colnames' have methods for these classes. Objects of
     any of these classes may be subsetted. Multiple data objects may
     be combined by rows (to add extra probes) or by columns (to add
     extra arrays).

     Furthermore all of these classes may be coerced to actually be of
     class 'matrix' using 'as.matrix', although this entails loss of
     information.

     The first three classes belong to the virtual class
     'LargeDataObject'. A 'show' method is defined for
     'LargeDataOject's which uses the utility function 'printHead'.

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

     Gordon Smyth

