-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdvc.yaml
More file actions
31 lines (31 loc) · 859 Bytes
/
dvc.yaml
File metadata and controls
31 lines (31 loc) · 859 Bytes
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
stages:
analyze:
cmd: calkit xenv -n main -- Rscript R/analyze.R
deps:
- R/analyze.R
- data/raw/data.csv
- renv.lock
outs:
- output/analysis_results.rds:
cache: false
persist: false
- data/processed/data.csv:
cache: false
persist: false
desc: Automatically generated from the 'analyze' stage in calkit.yaml.
Changes made here will be overwritten.
plot:
cmd: calkit xenv -n main -- Rscript R/plot.R
deps:
- R/plot.R
- data/processed/data.csv
- renv.lock
outs:
- figures/boxplot.pdf:
cache: false
persist: false
- figures/timeseries.pdf:
cache: false
persist: false
desc: Automatically generated from the 'plot' stage in calkit.yaml.
Changes made here will be overwritten.