1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dvc-dag.md

21 lines
369 B
Markdown
Raw Normal View History

# dvc dag
2020-07-26 21:21:20 +05:30
> 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`