note package:Biobase R Documentation _I_n_f_o_r_m_a_t_i_o_n_a_l _M_e_s_s_a_g_e_s _D_e_s_c_r_i_p_t_i_o_n: Generates an informational message that corresponds to its argument(s). Similar to warning() except prefaced by "Note:" instead of "Warning message:". _U_s_a_g_e: note(...) _A_r_g_u_m_e_n_t_s: ...: character vectors (which are pasted together) or NULL _D_e_t_a_i_l_s: This function essentially cat()'s the created string to the screen. It is intended for messages to the user that are deemed to be 'informational', as opposed to warnings, etc. _A_u_t_h_o_r(_s): Jeff Gentry _S_e_e _A_l_s_o: 'warning','stop' _E_x_a_m_p_l_e_s: note("This is an example of a note")