-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
49 lines (35 loc) · 864 Bytes
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```
# trafficsim
<!-- badges: start -->
<!-- badges: end -->
The goal of trafficsim is to simulate traffic levels on the network starting with OD data.
To set-up the project with {targets} we ran the following commands:
```{r}
library(targets)
```
```{r, eval=FALSE}
use_targets()
```
To visualise the project data processing stages run the following:
```{r visnet, eval=FALSE}
tar_visnetwork()
```
To re-run the code in this project, use the following command:
```{r, eval=FALSE}
tar_make()
```
For debugging, it's useful to be able to load an object from the pipeline.
Do this with `tar_load()`.
```{r load}
tar_load(clean_traffic_data)
clean_traffic_data
```