1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
S3method(boxplot,microbenchmark)
S3method(print,microbenchmark)
S3method(rbind,microbenchmark)
S3method(summary,microbenchmark)
if (getRversion() >= "3.6.0") {
S3method(ggplot2::autoplot, microbenchmark)
}
export(get_nanotime)
export(microbenchmark)
export(microtiming_precision)
importFrom(graphics,boxplot)
importFrom(stats,aggregate)
importFrom(stats,fivenum)
importFrom(stats,lm)
useDynLib(microbenchmark,do_get_nanotime)
useDynLib(microbenchmark,do_microtiming)
useDynLib(microbenchmark,do_microtiming_precision)
|