ToString
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| 1 | Print the formatted summary view of this SampleDistribution to the terminal console output. | |
| ToDisplayText | 1 | Build a nicely formatted english summary text of this sample distribution, suitable for the terminal display. |
| Row | 1 | Append one aligned row: <label> : <value |
| FmtPair | 1 | Format a two values interval as [a, b] |
| FmtNum | 1 | Format a numeric value for display: N/A for NaN, scientific notation for very large or very small magnitude, otherwise fixed-point number with the thousands separators. |
| FmtPercent | 1 | Format a ratio value (like CV) as the percentage text. |
03 Fields
| Name | Overloads | Summary |
|---|---|---|
| Locale | 1 | All of the numbers in the display view are formatted in invariant culture, so the output text is always in english style on any operating system locale. |
04 Members
Print the formatted summary view of this SampleDistribution to the terminal console output.
| Name | Type | Description |
|---|---|---|
title | SampleDistribution | An optional title text at the top of the view. |
output | String | Optional target text writer (for example a log file writer). By default the view is written to the console standard output. |
String)Build a nicely formatted english summary text of this sample distribution, suitable for the terminal display.
The view text is pure ASCII characters and all of the numbers are culture-invariant formatted, so it can be displayed correctly on any terminal environment. NaN or infinite values will be shown as N/A.
StringBuilder, String, String, Int32, Int32)Append one aligned row: <label> : <value>
Double())Format a two values interval as [a, b]
Double)Format a numeric value for display: N/A for NaN, scientific notation for very large or very small magnitude, otherwise fixed-point number with the thousands separators.
Double)Format a ratio value (like CV) as the percentage text.
All of the numbers in the display view are formatted in invariant culture, so the output text is always in english style on any operating system locale.