rapids/src/visualization/merge_heatmap_sensors_per_m...

38 lines
859 B
Plaintext
Raw Permalink Normal View History

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