Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --show-csv flag to dvc exp show #2740

Merged
merged 3 commits into from
Sep 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion content/docs/command-reference/exp/show.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ usage: dvc exp show [-h] [-q | -v] [-a] [-T] [-A] [-n <num>]
[--exclude-params <params_list>] [--param-deps]
[--sort-by <metric/param>]
[--sort-order {asc,desc}] [--no-timestamp] [--sha]
[--show-json] [--precision <n>]
[--show-json] [--show-csv] [--precision <n>]
```

## Description
Expand Down Expand Up @@ -115,6 +115,9 @@ metric or param.
- `--show-json` - prints the command's output in easily parsable JSON format,
instead of a human-readable table.

- `--show-csv` - prints the command's output in CSV format instead of a
human-readable table.

- `--precision <n>` -
[round](https://docs.python.org/3/library/functions.html#round) decimal values
to `n` digits of precision (5 by default). Applies to metrics only.
Expand Down