tldr/pages/common/dvc-dag.md

21 lines
369 B
Markdown
Raw Normal View History

# dvc dag
2020-07-26 16:51:20 +01:00
> Visualize the pipeline(s) in dvc.yaml.
> More information: <https://dvc.org/doc/command-reference/dag>.
- Visualize entire pipeline:
`dvc dag`
- Visualize pipeline stages up to a target stage:
`dvc dag {{target}}`
- Export pipeline in dot format:
`dvc dag --dot > pipeline.dot`
- Export pipeline as SVG:
`dvc dag --dot | dot -Tsvg -o pipeline.svg`