Skip to content
Snippets Groups Projects
Commit 1c4b7307 authored by Reto Gerber's avatar Reto Gerber
Browse files

add links to DT table

parent aabc2132
No related branches found
No related tags found
No related merge requests found
......@@ -83,6 +83,11 @@ done
```{r}
perf_df <- read.csv("perf_files.csv")
createLink <- function(val) {
sprintf(paste0('<a href="', URLdecode(val),'" target="_blank">', basename(val) ,'</a>'))
}
perf_df$performances <- createLink(perf_df$performances)
perf_df$metric_characteristics <- createLink(perf_df$metric_characteristics)
library(DT)
datatable(perf_df)
datatable(perf_df, escape = FALSE)
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment