multiDensity          package:BeadExplorer          R Documentation

_P_l_o_t _m_u_l_t_i_p_l_e _d_e_n_s_i_t_y _f_u_n_c_t_i_o_n_s

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

     Plot multiple density functions on the same graph

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

     multiDensity(data, xlab = "", ylab = "", main = "", log = TRUE, legend = TRUE, col = rainbow(ncol(data)), 
     position = "topright", xlim = c(min(ox), max(ox)), ylim = c(min(oy), max(oy)), ...)

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

    data: A matrix of values 

    xlab: A character label for the x-axis 

    ylab: A character label for the y-axis 

    main: A character label for the main title 

     log: Logical, specifying if log axes should be used 

  legend: Logical, specifying if a legend should be drawn 

     col: A vector of colours used to draw each sample 

position: Position of the legend , see 'legend' 

    xlim: A vector specifying the limits of the x-axis

    ylim: A vector specifying the limits of the y-axis 

     ...: Arguments passed to 'plot' 

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

     A density plot of each sample in the matrix is plotted on the same
     graph

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

     None

_N_o_t_e:

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

     Gareth Elvidge gareth.elvidge@well.ox.ac.uk

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

     See Also as 'help'

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

     data(examplebeadData)
     ndata<-normalise(examplebeadData)
     multiDensity(exprs(ndata))

