Nothing
knitr::opts_chunk$set(echo = !TRUE)
To regenerate this overview, run render("overview_bench.rmd")
.
library(pander) panderOptions('table.alignment.default', 'left') panderOptions('table.alignment.rownames', 'left')
rf<-list.dirs("./reports")[-1] ## rf <- list.dirs(path="^./reports", full.names = T, recursive = T) rf rf <- rev(rf) for (i in 1:length(rf)){ ff <- rf[i] cat("report: ", ff, "\n") rr <- paste0(ff, "/bench_report.html") dir <- glue::glue(ff) report <- glue::glue(rr) load(file.path(ff, "settings_used.RData")) cat("### directory name :", ff) cat("\n\n") cat("#### scripts used : \n\n") cat(toString(scripts_used), "\n") pander::pander(scripts_used) cat("\n#### settings : \n\n") ss <- settings_used |> lapply(paste0, collapse=" ") ss <- as.data.frame(unlist(ss)) names(ss) <- "value" cat(pander::pander(ss)) cat("#### [go to directory ", "](", dir, ")") cat("\n\n") cat("#### [see report ", "](", report, ")") cat("<br>", "\n") }
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.