diff options
Diffstat (limited to 'jb-ui/src/api_fsb/docs/StatisticalSummaryValue.md')
| -rw-r--r-- | jb-ui/src/api_fsb/docs/StatisticalSummaryValue.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/StatisticalSummaryValue.md b/jb-ui/src/api_fsb/docs/StatisticalSummaryValue.md new file mode 100644 index 0000000..4eeb595 --- /dev/null +++ b/jb-ui/src/api_fsb/docs/StatisticalSummaryValue.md @@ -0,0 +1,34 @@ +# StatisticalSummaryValue + + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**min** | **number** | | [default to undefined] +**max** | **number** | | [default to undefined] +**mean** | **number** | | [default to undefined] +**q1** | **number** | | [default to undefined] +**q2** | **number** | equal to the median | [default to undefined] +**q3** | **number** | | [default to undefined] +**lower_whisker** | **number** | | [readonly] [default to undefined] +**upper_whisker** | **number** | | [readonly] [default to undefined] + +## Example + +```typescript +import { StatisticalSummaryValue } from './api'; + +const instance: StatisticalSummaryValue = { + min, + max, + mean, + q1, + q2, + q3, + lower_whisker, + upper_whisker, +}; +``` + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
