fitPLM                package:affyPLM                R Documentation

_F_i_t _a _P_r_o_b_e _L_e_v_e_l _M_o_d_e_l _t_o _A_f_f_y_m_e_t_r_i_x _G_e_n_e_c_h_i_p _D_a_t_a.

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

     This function converts an 'AffyBatch' into an 'PLMset' by fitting
     a specified robust linear model to the probe level data

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

     fitPLM(object,model=PM ~ -1 + probes +samples,
     variable.type=c(default="factor"),
     constraint.type=c(default="contr.treatment"),
     background=TRUE, normalize=TRUE, background.method = "RMA.2",normalize.method = "quantile",se.type=4,psi.type="Huber",psi.k=NULL,background.param=list(),normalize.param=list())

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

  object: an 'AffyBatch'

   model: A formula describing the model to fit. This is slightly
          different from the standard method of specifying formulae in
          R. Read the description below

variable.type: a way to specify whether variables in the model are
          factors or standard variables

constraint.type: should factor variables sum to zero or have first
          variable set to zero (endpoint constraint)

normalize: logical value. If 'TRUE' normalize data using quantile
          normalization

background: logical value. If 'TRUE' background correct using RMA
          background correction

background.method: name of background method to use.

normalize.method: name of normalization method to use.

 se.type: integer value indicating which of the four standard error
          methods to use

psi.type: A name of a weight function to use in M estimation

   psi.k: A tuning parameter for 'psi.type'

background.param: A list of parameters for background routines

normalize.param: A list of parameters for normalization routines

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

     This function fits robust Probe Level Linear models to all the
     probesets in an 'AffyBatch'.

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

     An 'PLMset'

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

     Ben Bolstad bolstad@stat.berkeley.edu

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

     Under Preparation

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

     'express','expresso', 'rma', 'threestep'

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

     data(affybatch.example)
     Pset <- fitPLM(affybatch.example,model=PM ~ -1 + probes + samples)
     se(Pset)[1:5,]

     # A larger example testing weight image function
     data(Dilution)
     Pset <- fitPLM(Dilution,model=PM ~ -1 + probes + samples)
     image(Pset)
     boxplot(Pset)

     #now lets try a wider class of models
     Pset <- fitPLM(Dilution,model=PM ~ -1 + probes +liver,normalize=FALSE,background=FALSE)
     coefs(Pset)[1:10,]

     Pset <- fitPLM(Dilution,model=PM ~ -1 + probes + liver + scanner,normalize=FALSE,background=FALSE)
     coefs(Pset)[1:10,]

     #try liver as a covariate
     logliver <- log2(c(20,20,10,10))
     Pset <- fitPLM(Dilution,model=PM~-1+probes+logliver+scanner,normalize=FALSE,background=FALSE,variable.type=c(logliver="covariate"))
     coefs(Pset)[1:10,]

     #try a different se.type
     Pset <- fitPLM(Dilution,model=PM~-1+probes+scanner,normalize=FALSE,background=FALSE,se.type=2)
     se(Pset)[1:10,]
     Pset <- fitPLM(Dilution,model=PM~-1+probes+scanner,normalize=FALSE,background=FALSE,se.type=3)
     se(Pset)[1:10,]

