moving towards first working state

This commit is contained in:
Andreas Gammelgaard Damsbo 2024-11-08 16:31:33 +01:00
commit 4c0a19f09f
No known key found for this signature in database
14 changed files with 75 additions and 1695 deletions

39
app/www/analyses.qmd Normal file
View file

@ -0,0 +1,39 @@
---
title: "webResearch analysis results"
date: today
execute:
echo: false
params:
data.file: NA
---
```{r setup}
web_data <- readRDS(file = params$data.file)
```
## Introduction
## Methods
Analyses were conducted in R version `r paste(version["major"],version["minor"],sep=".")` using the web-based data analysis tool 'webResearcher' version `r packageVersion("webResearch")`.
## Results
Below is the baseline characteristics plotted.
```{r}
web_data$table1
```
Here are the regression results.
```{r}
web_data$table2
```
## Discussion
Good luck on your further work!