mergeCoeff             package:MergeMaid             R Documentation

_C_l_a_s_s _m_e_r_g_e_C_o_e_f_f, _a _c_l_a_s_s _f_o_r _s_t_o_r_i_n_g _r_e_g_r_e_s_s_i_o_n _c_o_e_f_f_i_c_i_e_n_t_s.

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

     This is the class representation for output from regression
     coefficient calculations

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

     'mergeExprs','modelOutcome', 'mergeExprSet-class'

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

       
       data(mergeData)
       merged  <- mergeExprs(sample1,sample2,sample3)

       log.coeff  <- modelOutcome(merged,outcome=c(1,1,1),method="logistic")
       plot(coeff(log.coeff))
       plot(stdcoeff(log.coeff),pch=4,labels=c("study A","study B","study C"),col=3)

       linear.coeff  <- modelOutcome(merged[1:2],outcome=c(3,3),method="linear")
       plot(zscore(linear.coeff))
       plot(zscore(linear.coeff),xlab="study A",ylab="study B",col=2)
       

