report                 package:npmc                 R Documentation

_R_e_p_o_r_t _P_r_i_n_t_i_n_g

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

     Function to present text on screen.

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

     report(msg=NULL, style=0, char="-")

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

     msg: The text to be printed (any vector-type) 

   style: The style in which to print the text. Possible values are
          'underlined' and 'border' (and valid abbreviations). Any
          other value defaults to 'blank', i.e. the pure text-vector. 

    char: A character to use for the style. 

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

     A matrix containing the printed lines in one row.

_N_o_t_e:

     report will always print a blank line first.

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

     Joerg Helms

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

      
         report("It's a nice day!", style="border", char="*") 

