showDens             package:davidTiling             R Documentation

_P_l_o_t _f_u_n_c_t_i_o_n _f_o_r _m_o_r_e _t_h_a_n _o_n_e _d_e_n_s_i_t_y

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

     Plot function for more than one density

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

     showDens(z, breaks, xat, xtickLabels=paste(xat), col, ylab = "", ...)

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

       z: List: numeric vectors for computing histograms for

  breaks: Numeric vector: breaks of the histogram

     xat: Numeric vector: where to put the x-axis ticks

xtickLabels: Character vector: what to write underneath them

     col: Character vector: colours of the histograms

    ylab: Character scalar: y-axis label

     ...: futher arguments passed on to plot

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

     ...

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

     returns scale factor

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

     Wolfgang Huber huber@ebi.ac.uk

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

     'hist'

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

     showDens(list(x1=runif(100), x2=exp(runif(50))-1, x3=runif(20)),
       breaks=seq(0, 2, 0.2), xat=seq(0, 2, 0.5), col=rainbow(3), xlab="Random Numbers")

