Skip to content

Commit 2bdb87a

Browse files
Wording fixup. (#27)
1 parent 2256cce commit 2bdb87a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/ToolReference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Summarization operators available are:
261261
last sum var values
262262
```
263263

264-
Numeric values are printed to 12 significant digits by default. This can be set with the'--p|float-precision' option. Values 6 or less are tuned for human consumption and the number set significant digits beyond the decimal point rather than the total number of significant digits.
264+
Numeric values are printed to 12 significant digits by default. This can be changed using the '--p|float-precision' option. If six or less it sets the number of significant digits after the decimal point. If greater than six it sets the total number of significant digits.
265265

266266
Calculations hold onto the minimum data needed while reading data. A few operations like median keep all data values in memory. These operations will start to encounter performance issues as available memory becomes scarce. The size that can be handled effectively is machine dependent, but often quite large files can be handled. Operations requiring numeric entries will signal an error and terminate processing if a non-numeric entry is found.
267267

tsv-summarize/src/tsv-summarize.d

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,17 @@ Summarization operators available are:
8888
first range mad mode
8989
last sum var values
9090
91+
Numeric values are printed to 12 significant digits by default. This can be
92+
changed using the '--p|float-precision' option. If six or less it sets the
93+
number of significant digits after the decimal point. If greater than six
94+
it sets the total number of significant digits.
95+
9196
Calculations hold onto the minimum data needed while reading data. A few
9297
operations like median keep all data values in memory. These operations will
9398
start to encounter performance issues as available memory becomes scarce.
9499
The size that can be handled effectively is machine dependent, but often
95100
quite large files can be handled.
96101
97-
Numeric values are printed to 12 significant digits by default. This can be
98-
set with the'--p|float-precision' option. Values 6 or less are tuned for
99-
human consumption and the number set significant digits beyond the decimal
100-
point rather than the total number of significant digits.
101-
102102
Operations requiring numeric entries will signal an error and terminate
103103
processing if a non-numeric entry is found.
104104

0 commit comments

Comments
 (0)