Skip to content

Commit

Permalink
update proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
Anish Shah committed May 7, 2024
1 parent ee9f4bc commit 876c496
Show file tree
Hide file tree
Showing 52 changed files with 11,589 additions and 698 deletions.
589 changes: 589 additions & 0 deletions collaboration.html

Large diffs are not rendered by default.

577 changes: 577 additions & 0 deletions f32/progress/year_two/summary.html

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions k23/_dag.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
```{r}
#| label: fig-k23-dag
#| fig.cap: DAG for the K23 example
library(DiagrammeR)
# Base graph
g <- create_graph()
# Nodes
nodes <- tibble::tribble(
~type, ~label,
"DSP", "ECG",
"DSP", "Scar",
"DSP", "MRI",
"ANS", "Stress",
"ANS", "PTSD",
"EPS", "EPS",
"EPI", "Phenotype",
"EPI", "Genotype",
"DSP", "Arrhythmia Prediction",
"EPI", "Trajectory",
"DSP", "Computational Modeling"
)
node_df <-
create_node_df(n = nrow(nodes), type = nodes$type, label = nodes$label)
# Edges
edges <- tibble::tribble(
~from, ~to,
"ECG", "Scar",
"MRI", "ECG",
"EPS", "Computational Modeling",
"MRI", "Computational Modeling",
"EPS", "Scar"
)
edge_df <-
create_edge_df(
from = edges$from,
to = edges$to
)
create_graph() |>
render_graph()
```
642 changes: 642 additions & 0 deletions k23/aims.html

Large diffs are not rendered by default.

Loading

0 comments on commit 876c496

Please sign in to comment.