Skip to content

Commit fae9ae6

Browse files
committed
Update with starter for 10 flow diagram
1 parent 6e10543 commit fae9ae6

File tree

4 files changed

+60
-2
lines changed

4 files changed

+60
-2
lines changed

README.Rmd

+15-1
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,30 @@ knitr::opts_chunk$set(
99
collapse = TRUE,
1010
comment = "#>"
1111
)
12+
x = c(1, 2)
1213
```
1314
# c2d
1415

1516
The goal of c2d is to host code for loading data used in creds2.
1617

18+
Fun example in Python to show reproducible code:
19+
1720
```{r, engine='python'}
1821
import numpy as np
1922
x = [1, 2, 4, 9]
2023
y = [2, 3, 5, 6]
21-
import matplotlib
24+
# import matplotlib
2225
z = np.add(x, y)
2326
print(z)
2427
```
28+
29+
## Flow diagram
30+
31+
The plot below, generated using reproducible code stored in the script `data-flow-diag.R`, is a data flow diagram ([DFD](https://en.wikipedia.org/wiki/Data_flow_diagram)).
32+
We will modify this as the project evolve as we clarify the work to be done.
33+
34+
```{r, message=FALSE}
35+
source("data-flow-diag.R")
36+
render_graph(g, layout = "tree")
37+
```
38+

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,28 @@
55

66
The goal of c2d is to host code for loading data used in creds2.
77

8+
Fun example in Python to show reproducible code:
9+
810
``` python
911
import numpy as np
1012
x = [1, 2, 4, 9]
1113
y = [2, 3, 5, 6]
12-
import matplotlib
14+
# import matplotlib
1315
z = np.add(x, y)
1416
print(z)
1517
#> [ 3 5 9 15]
1618
```
19+
20+
## Flow diagram
21+
22+
The plot below, generated using reproducible code stored in the script
23+
`data-flow-diag.R`, is a data flow diagram
24+
([DFD](https://en.wikipedia.org/wiki/Data_flow_diagram)). We will modify
25+
this as the project evolve as we clarify the work to be done.
26+
27+
``` r
28+
source("data-flow-diag.R")
29+
render_graph(g, layout = "tree")
30+
```
31+
32+
![](README_files/figure-gfm/unnamed-chunk-2-1.png)<!-- -->
24.2 KB
Loading

data-flow-diag.R

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# install.packages("DiagrammeR")
2+
library(DiagrammeR)
3+
library(dplyr)
4+
ndf = create_node_df(n = 5, label = TRUE)
5+
ndf$label = c("MOT", "Census", "Traffic", "Processing", "Scenarios")
6+
ndf$shape = "square"
7+
ndf$shape[4] = "triangle"
8+
ndf$shape[5] = "circle"
9+
10+
edf = create_edge_df(
11+
from = c(1, 2, 3, 4),
12+
to = c(4, 4, 4, 5)
13+
)
14+
g = create_graph(nodes_df = ndf, edges_df = edf, graph_name = "cyipt", directed = TRUE)
15+
16+
# save_graph(x = g, file = "g.dot")
17+
# generate_dot(g) %>%
18+
# grViz()
19+
20+
# DiagrammeR::mermaid(g)
21+
22+
# mermaid("
23+
# graph LR
24+
# A(OSM)-->D[Road Network]
25+
# B[PCT]-->D[Road Network]
26+
# C[MasterMap]-->D[Road Network]
27+
# ")
28+

0 commit comments

Comments
 (0)