File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,18 @@ $ pytask dag
20
20
21
21
It generates a ` dag.pdf ` in the current working directory.
22
22
23
- There are ways to customize the visualization.
24
-
25
- 1 . You can change the graph's layout by using the {option}` pytask dag --layout ` option.
26
- Its default is set to ` dot ` and produces a hierarchical structure. graphviz supports
27
- other layouts, which are listed [ here] ( https://graphviz.org/docs/layouts/ ) .
28
- 1 . Using the {option}` pytask dag --output-path ` option, you can provide a file name for
29
- the graph. The file extension changes the output format as supported by
30
- [ pygraphviz] ( https://github.com/pygraphviz/pygraphviz ) .
23
+ If you do not want to generate a PDF, use {option}` pytask dag --output-path ` or,
24
+ shorter, {option}` pytask dag -o ` to choose a different format inferred from the
25
+ file-ending. Select any format supported by
26
+ [ graphviz] ( https://graphviz.org/docs/outputs/ ) .
27
+
28
+ ``` console
29
+ $ pytask dag -o dag.png
30
+ ```
31
+
32
+ You can change the graph's layout by using the {option}` pytask dag --layout ` option. Its
33
+ default is set to ` dot ` and produces a hierarchical structure. graphviz supports other
34
+ layouts, which are listed [ here] ( https://graphviz.org/docs/layouts/ ) .
31
35
32
36
## Programmatic Interface
33
37
You can’t perform that action at this time.
0 commit comments