forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
datamash: add page (tldr-pages#2085)
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# datamash | ||
|
||
> Tool to perform basic numeric, textual and statistical operations on input textual data files. | ||
- Get max, min, mean and median of a single column of numbers: | ||
|
||
`seq 3 | datamash max 1 min 1 mean 1 median 1` | ||
|
||
- Get the mean of a single column of float numbers (floats must use "," and not "."): | ||
|
||
`echo -e '1.0\n2.5\n3.1\n4.3\n5.6\n5.7' | tr '.' ',' | datamash mean 1` | ||
|
||
- Get the mean of a single column of numbers with a given decimal precision: | ||
|
||
`echo -e '1\n2\n3\n4\n5\n5' | datamash -R {{number_of_decimals_wanted}} mean 1` | ||
|
||
- Get the mean of a single column of numbers ignoring "Na" and "NaN" (literal) strings: | ||
|
||
`echo -e '1\n2\nNa\n3\nNaN' | datamash --narm mean 1` |