readProfileData {proftools} | R Documentation |
Reads in Rprof profile data for further processing.
readProfileData(filename = "Rprof.out")
readRStudioProfileCacheData()
filename |
Name of a file produced by |
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.
readRStudioProfileCacheData
returns the data for the most
recent profiling run in the RStudio profile cache, or NULL
if no data is available.
R representation of Rprof data,
Luke Tierney
Rprof
,
summaryRprof
,
flatProfile
,
plotProfileCallGraph
,
printProfileCallGraph
,
profileCallGraph2Dot
pd <- readProfileData(system.file("samples", "glmEx.out", package="proftools"))
flatProfile(pd)
flatProfile(pd, FALSE)