view                 package:svViews                 R Documentation

_V_i_e_w _t_h_e _c_o_n_t_e_n_t _o_f _a_n _o_b_j_e_c_t _i_n _a _H_T_M_L _d_o_c_u_m_e_n_t

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

     Views are rich-formatted presentations of the content of R
     objects. They provide an easy way to inspect them, combining
     formatted text, tables and graphs.

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

         view(x, type = "summary", objname = deparse(substitute(x)), ...)

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

       x: An R object 

    type: The type of view to display. use 'type = "typelist"' to get
          the list of views available for a given object 

 objname: The name to use in the title of the view. By default, it is
          the actual name of the object 

     ...: Further arguments (depending on the object and on 'type' 

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

     The name of a temporary file containing the generated view.

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

     Eric Lecoutre & Philippe Grosjean

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

     'report', 'viewHTMLinit'

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

         ## Not run: 
             data(iris)
             view(iris)
             iris.pc <- princomp(iris[, 1:4])
             view(iris.pc)
             view(ls)
         
     ## End(Not run)

