subset                 package:CALIB                 R Documentation

_S_u_b_s_e_t _o_f _R_G_L_i_s_t__C_A_L_I_B, _S_p_i_k_e_L_i_s_t _o_r _P_a_r_a_m_e_t_e_r_L_i_s_t _o_b_j_e_c_t

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

     Exact a subset of an RGList_CALIB, SpikeList or ParameterList
     object.

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

      object[i,j]

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

  object: an object of class 'RGList_CALIB' or 'SpikeList'.

     i,j: subscripts. 'i' is the subscripts of the spots  and 'j' is
          the subscripts of the arrays.

_D_e_t_a_i_l_s:

     'i','j' may take any values acceptable for the matrix components
     of 'object'. see the 'exact' in the base package for more details.

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

     An object of the same class as 'object' containing the data with
     specified subset of spots and arrays.

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

     Hui Zhao

_R_e_f_e_r_e_n_c_e_s:

     'subsetting' in limma package

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

     'exact' in the base package

     'subsetting' in the limma package

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

     # for RGList_CALIB
     R <- G <- matrix(1:8,4,2)
     rownames(R) <- rownames(G) <- c("g1","g2","g3","g4")
     colnames(R) <- colnames(G) <- c("a1","a2")
     RG <- new("RGList_CALIB",list(R=R,G=G))

     RG[1:2,]
     RG[,1:2]
     RG[1:2,1:2]

