type TKFloatSpan = packed record;
Record type used by K-NN (K Nearest Neighbors) classification algorithm to store the information about the range of real valued attributes.
Stores the value range of attributes.
Fields
| Name | Type | Description |
|---|---|---|
| Fact | double | The inverse of the maximum range: 1/(Max-Min). |
| Max | double | Maximum value of the attribute found in the learn dataset. |
| Min | double | Minimum value of the attribute found in the learn dataset. |