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

On-line help for mlr summary --transpose #1581

Merged
merged 2 commits into from
Jun 8, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/src/manpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@

1mfilter0m
Usage: mlr filter [options] {DSL expression}
Lets you use a domain-specific language to progamatically filter which

Check failure on line 1080 in docs/src/manpage.md

View workflow job for this annotation

GitHub Actions / Codespell

progamatically ==> programmatically
stream records will be output.
See also: https://miller.readthedocs.io/en/latest/reference-verbs

Expand Down Expand Up @@ -1535,7 +1535,7 @@

1mput0m
Usage: mlr put [options] {DSL expression}
Lets you use a domain-specific language to progamatically alter stream records.

Check failure on line 1538 in docs/src/manpage.md

View workflow job for this annotation

GitHub Actions / Codespell

progamatically ==> programmatically
See also: https://miller.readthedocs.io/en/latest/reference-verbs

Options:
Expand Down Expand Up @@ -2099,6 +2099,7 @@
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.

1mtac0m
Expand Down
1 change: 1 addition & 0 deletions docs/src/manpage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2078,6 +2078,7 @@
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.

1mtac0m
Expand Down
1 change: 1 addition & 0 deletions docs/src/reference-verbs.md
Original file line number Diff line number Diff line change
Expand Up @@ -3796,6 +3796,7 @@ Options:
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.
</pre>

Expand Down
1 change: 1 addition & 0 deletions man/manpage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2078,6 +2078,7 @@
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.

1mtac0m
Expand Down
1 change: 1 addition & 0 deletions man/mlr.1
Original file line number Diff line number Diff line change
Expand Up @@ -2605,6 +2605,7 @@ Options:
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.
.fi
.if n \{\
Expand Down
1 change: 1 addition & 0 deletions pkg/transformers/summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ func transformerSummaryUsage(
fmt.Fprintf(o, "-a {mean,sum,etc.} Use only the specified summarizers.\n")
fmt.Fprintf(o, "-x {mean,sum,etc.} Use all summarizers, except the specified ones.\n")
fmt.Fprintf(o, "--all Use all available summarizers.\n")
fmt.Fprintf(o, "--transpose Show output with field names as column names..\n")
fmt.Fprintf(o, "-h|--help Show this message.\n")
}

Expand Down
1 change: 1 addition & 0 deletions test/cases/cli-help/0001/expout
Original file line number Diff line number Diff line change
Expand Up @@ -1252,6 +1252,7 @@ Options:
-a {mean,sum,etc.} Use only the specified summarizers.
-x {mean,sum,etc.} Use all summarizers, except the specified ones.
--all Use all available summarizers.
--transpose Show output with field names as column names..
-h|--help Show this message.

================================================================
Expand Down
Loading