plotLongVector          package:HilbertVis          R Documentation

_A _s_i_m_p_l_e _f_u_n_c_t_i_o_n _t_o _p_l_o_t _a _v_e_r_y _l_o_n_g _v_e_c_t_o_r.

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

     This function does basically the same as just calling 'plot( vec
     )' but is much faster in case of a very long vector. This is
     because it first calls 'shrinkVector'.

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

     plotLongVector(vec, offset = 1, shrinkLength = 4000, xlab = "", ylab = "", ...)

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

     vec: The numerical vector to be plotted 

  offset: The x axis is labelled with numbers from 'offset' to
          'offset+length(vec)-1'. 

shrinkLength: To which length to shrink the vector before plotting it.
          Should be at least the width of your plot in pixels.

    xlab: The label of the x axis, to be passed to 'plot'. 

    ylab: The label of the y axis, to be passed to 'plot'. 

     ...: Further arguments to be passed to 'plot'.

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

     Invisible Null and a plot.

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

     Simon Anders, EMBL-EBI, sanders@fs.tum.de

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

     plotLongVector( rep( 1:100000, 20 ) )

