EVOLUTION-MANAGER
Edit File: profiling.R
## ----setup, include = FALSE---------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ## ------------------------------------------------------------------------ library(ggplot2) library(profvis) p <- ggplot(mtcars, aes(mpg, disp)) + geom_point() + facet_grid(gear~cyl) p_build <- ggplot_build(p) profile <- profvis(for (i in seq_len(100)) ggplot_gtable(p_build)) profile ## ---- eval=FALSE, include=FALSE------------------------------------------ # saveRDS(profile, file.path('profilings', paste0(packageVersion('gtable'), '.rds')))