hilbertImage           package:HilbertVis           R Documentation

_P_r_o_d_u_c_e _a _m_a_t_r_i_x _t_h_a_t _v_i_s_u_a_l_i_z_e_s _a _l_o_n_g _d_a_t_a _v_e_c_t_o_r _a_l_o_n_g _a _H_i_l_b_e_r_t _c_u_r_v_e

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

     Calculate a Hilbert curve visualization of a long data vector and
     return it as a square matrix.

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

     hilbertImage(data, level = 9, mode = "absmax")

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

    data: A (potentially very long) vector of numerical data. 

   level: The level of the Hilbert curve, determining the size of the
          returned matrix 

    mode: The binning mode. See 'shrinkVector' for details.  

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

     See the package vignette for an explanation of this visualization
     technique.

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

     A matrix of dimension '2^level' x '2^level'. Each matrix element
     corresponds to a bin of consecutive elements of the data vector,
     the bins arranged to follow the Hilbert curve of the given level.
     By default, the value of a  matrix element is either the largest
     or smallest element in the bin, whichever is larger by absolute
     value. (See  'shrinkVector' for other possible binning modes.)

     To display such a matrix graphically, you can use the standard
     functions 'image' or 'levelplot' but the function
     'showHilbertImage' may be more convenient.

_N_o_t_e:

     For an interactive GUI to explore a Hilbert curve visualisation,
     use the function 'hilbertDisplay' in the 'HilbertVisGUI' package.

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

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

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

        # Get a vector with example data
        dataVec <- makeRandomTestData( )
        
        # Plot it in conventional (linear) fashion
        plotLongVector( dataVec )
        
        # Note how the peaks look quite uniform

        # Get the Hilbert curve matrix
        hMat <- hilbertImage( dataVec )
        
        # Plot it with the 'showHilbertImage' function
        showHilbertImage( hMat )
        
        # Note how you can now see the non-uniformity hidden in the previous plot.
        # Note also the ugly aliasing when you change the size of the plot window.
        # Using EBImage allows to display in each matrix element as one pixel:
        
        # if( require ( EBImage ) )
        #    showHilbertImage( hMat, mode="EBImage" )

