autoplot.microbenchmark {microbenchmark} | R Documentation |
Uses ggplot2 to produce a more legible graph of microbenchmark timings
## S3 method for class 'microbenchmark' autoplot(object, ..., log = TRUE, y_max = 1.05 * max(object$time))
object |
A microbenchmark object |
log |
If |
y_max |
The upper limit of the y axis (defaults to 5 percent more than the maximum value) |
... |
Ignored |
A ggplot2 plot
Ari Friedman, Olaf Mersmann
library("ggplot2") tm <- microbenchmark(rchisq(100, 0), rchisq(100, 1), rchisq(100, 2), rchisq(100, 3), rchisq(100, 5), times=1000L) autoplot(tm)