readProfileData          package:proftools          R Documentation

_R_e_a_d _R_p_r_o_f _P_r_o_f_i_l_e _D_a_t_a

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

     Reads in Rprof profile data for further processing.

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

     readProfileData(filename = "Rprof.out")

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

filename: Name of a file produced by 'Rprof()' 

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

     'readProfileData' reads the data in the file produced by 'Rprof'
     into a data structure for processing by other functions. The
     details of the structure are subject to change.

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

     R representation of Rprof data,

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

     Luke Tierney

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

     'Rprof', 'summaryRprof', 'flatProfile', 'plotProfileCallGraph',
     'printProfileCallGraph', 'profileCallGraph2Dot'

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

     ## Not run: 
          ## Rprof() is not available on all platforms
          Rprof(tmp <- tempfile())
          example(glm)
          Rprof()
          flatProfile(readProfileData(tmp))
          flatProfile(readProfileData(tmp), FALSE)
          unlink(tmp)
       
     ## End(Not run)

