DataStatistics
Histogram - GetDataAverage
Computes the average value in the histogram's domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Average. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataMaxValue
Computes the largest of (non-empty) bin values.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Maximum bin. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataMedian
Computes the median in the histogram's domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Median. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataMinValue
Computes the smallest of (non-empty) bin value.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Minimum bin. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataNthValue
Computes the nth smallest (or largest) value in the domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| InN | Double | Nth index. |
| InSortingOrder | Enum < SortingOrder > | Sorting order. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Nth value. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataQuantile
Computes the specified quantile in the histogram's domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| InQuantile | Float | Quantile point. Range: 〔0,1〕. |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Quantile. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataSize
Computes the sum of all values contained in the bins.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutDouble | Double | Data size. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataStdDev
Computes the standard deviation of the histogram's domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Standard deviation. |
| Error | ErrorState | Gets the execution error message |
Histogram - GetDataVariance
Computes the variance of the histogram's domain.
IN
| Name | Type | Description |
|---|---|---|
| InHistogram | Histogram | The input Histogram |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutFloat | Float | Variance. |
| Error | ErrorState | Gets the execution error message |