Skip to content

Commit

Permalink
+ sdm-process w/ subraphs (Prepare,Model,Combine,Share)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbest committed Mar 15, 2024
1 parent 0835d8e commit 882d91e
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 111 deletions.
44 changes: 43 additions & 1 deletion diagrams/sdm-process.mmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
flowchart TD
flowchart LR

%% nodes
P(presence):::in
Expand All @@ -18,6 +18,10 @@ flowchart TD
N[["new data"]]:::in
prd(prediction):::out
prf(performance):::out
res[result set]:::out
ens[ensemble]:::fxn
der[derived]:::out
web[web]:::out

%% edges
P --> pts
Expand All @@ -38,6 +42,44 @@ flowchart TD
M --> E
pr --> prd
E --> prf
prd --> res
prf --> res
res --x ens
ens --> der
der --> web
res --> web

%% subgraphs
subgraph Share
direction LR
subgraph Combine
subgraph Prepare
P
A
pts
env
X
D
end
subgraph Model
S
t1
t2
F
M
E
C
pr
N
prd
prf
res
end
ens
der
end
web
end

%% Legend
in(input):::in
Expand Down
4 changes: 4 additions & 0 deletions lib/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
:root {
/* https://quarto.org/docs/authoring/diagrams.html#customizing-mermaid */
--mermaid-fg-color--lightest: #d3d3d3
}
Loading

0 comments on commit 882d91e

Please sign in to comment.