guiSource               package:svMisc               R Documentation

_S_o_u_r_c_e _R _c_o_d_e, _c_a_p_t_u_r_e _i_t_s _o_u_t_p_u_t _a_n_d _c_o_n_v_e_r_t _i_t _i_n _a _d_i_f_f_e_r_e_n_t _f_o_r_m_a_t

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

     'guiSource' is like 'source', but it allows to rework the output
     (for instance to print it in HTML format)

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

     guiSource(file, out.form = getOption("R.output.format"), local = FALSE,
         echo = FALSE, print.eval = TRUE, verbose = getOption("verbose"),
             prompt.echo = getOption("prompt"), max.deparse.length = 150, chdir = FALSE)

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

    file: a connection or a character string giving the name of the
          file or URL to read from. 

out.form: a string indicating which output format to use (for instance,
          "html"). 

   local: if 'local' is 'FALSE', the statements scanned are evaluated
          in the user's workspace (the global environment), otherwise
          in the environment calling 'source'. 

    echo: logical; if 'TRUE', each expression is printed after parsing,
          before evaluation.

print.eval: logical; if 'TRUE', the result of 'eval(i)' is printed for
          each expression 'i'; defaults to 'echo'. 

 verbose: if 'TRUE', more diagnostics (than just 'echo = TRUE') are
          printed during parsing and evaluation of input, including
          extra info for *each* expression.

prompt.echo: character; gives the prompt to be used if 'echo = TRUE'. 

max.deparse.length: integer; is used only if 'echo' is 'TRUE' and gives
          the maximal length of the "echo" of a single expression. 

   chdir: logical; if 'TRUE', the R working directory is changed to the
          directory containing 'file' for evaluating 

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

     This function is usually called by functions that processes
     commands send by GUI clients.

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

     The formatted output is returned invisibly.

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

     'source', 'guiCmd'

