ggplot.profr {profr}R Documentation

Visualise profiling data with ggplot2

Description

Visualise profiling data stored in a profr data.frame.

Usage

ggplot.profr(data, ..., minlabel = 0.1, angle=0)

Arguments

data profile output to plot
... other arguments passed on to ggplot
minlabel minimum percent of time for function to get a label
angle function label angle

Details

This will plot the call tree of the specified stop watch object. If you only want a small part, you will need to subset the object

Author(s)

Hadley Wickham <h.wickham@gmail.com>

See Also

plot.profr

Examples

if (require("ggplot2", quiet = TRUE)) {
ggplot(nesting_prof)
ggplot(reshape_prof)
}

[Package profr version 0.1.1 Index]