rapids/src/visualization/merge_heatmap_sensors_per_m...

38 lines
859 B
Plaintext

---
title: "Sensors per Minute per Time Segment for All Participants"
author:
- "RAPIDS"
date: "`r format(Sys.time(), '%d %B, %Y')`"
params:
rmd: "merge_heatmap_sensors_per_minute_per_time_segment.Rmd"
output:
html_document:
highlight: tango
number_sections: no
theme: default
toc: yes
toc_depth: 3
toc_float:
collapsed: no
smooth_scroll: yes
---
<style>
.main-container {min-width:800px; max-width:100%;}
</style>
```{r include=FALSE}
source("/mnt/c/Users/junos/Documents/FWO-ARRS/Analysis/straw2analysis/rapids/renv/activate.R")
```
```{r, echo=FALSE}
heatmaps <- snakemake@input[["heatmap_sensors_per_minute_per_time_segment"]]
heatmaps.html <- vector(mode="list", length(heatmaps))
for(pid in 1:length(heatmaps)){
heatmaps.html[[pid]] <- htmltools::includeHTML(heatmaps[pid])
}
htmltools::tagList(heatmaps.html)
```