Benchmark plot creation time. Broken down into construct, build, render and draw times.

benchplot(x)

Arguments

x

code to create ggplot2 plot

Examples

benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point())
#> step user.self sys.self elapsed #> 1 construct 0.003 0 0.003 #> 2 build 0.013 0 0.013 #> 3 render 0.026 0 0.026 #> 4 draw 0.029 0 0.029 #> 5 TOTAL 0.071 0 0.071
benchplot(ggplot(mtcars, aes(mpg, wt)) + geom_point() + facet_grid(. ~ cyl))
#> step user.self sys.self elapsed #> 1 construct 0.002 0 0.002 #> 2 build 0.024 0 0.024 #> 3 render 0.073 0 0.073 #> 4 draw 0.069 0 0.069 #> 5 TOTAL 0.168 0 0.168
# With tidy eval: p <- expr(ggplot(mtcars, aes(mpg, wt)) + geom_point()) benchplot(!!p)
#> step user.self sys.self elapsed #> 1 construct 0.002 0 0.002 #> 2 build 0.014 0 0.014 #> 3 render 0.025 0 0.025 #> 4 draw 0.030 0 0.030 #> 5 TOTAL 0.071 0 0.071