diff --git a/content/docs/command-reference/dag.md b/content/docs/command-reference/dag.md index 9d71f53437..ff01c3f9f4 100644 --- a/content/docs/command-reference/dag.md +++ b/content/docs/command-reference/dag.md @@ -68,7 +68,7 @@ variable. For example, the following command will replace the default pager with [`more`](), for a single run: ```dvc -$ DVC_PAGER=more dvc dag my-pipeline.dvc +$ DVC_PAGER=more dvc dag ``` For a persistent change, define `DVC_PAGER` in the shell configuration. For @@ -83,44 +83,26 @@ export DVC_PAGER=more Visualize DVC pipeline: ```dvc -$ dvc dag eval.txt.dvc - .------------------------. - | data/Posts.xml.zip.dvc | - `------------------------' - * - * - * - .---------------. - | Posts.xml.dvc | - `---------------' - * - * - * - .---------------. - | Posts.tsv.dvc | - `---------------' - * - * - * - .---------------------. - | Posts-train.tsv.dvc | - `---------------------' - * - * - * - .--------------------. - | matrix-train.p.dvc | - `--------------------' - *** *** - ** *** - ** ** -.-------------. ** -| model.p.dvc | ** -`-------------' *** - *** *** - ** ** - ** ** - .--------------. - | eval.txt.dvc | - `--------------' +$ dvc dag + +---------+ + | prepare | + +---------+ + * + * + * + +-----------+ + | featurize | + +-----------+ + ** ** + ** * + * ** ++-------+ * +| train | ** ++-------+ * + ** ** + ** ** + * * + +----------+ + | evaluate | + +----------+ ```