Function or value | Description | ||||
Full Usage:
bin bandwidth data
Parameters:
float
-
Bandwidth of the resulting bins.
data : seq<float>
-
float data
Returns: Map<float, seq<float>>
|
Sorts the data into bins with given bandwidth.
|
||||
Full Usage:
binBy projection bandwidth data
Parameters:
'a -> float
-
Function to isolate the feature to bin by.
bandwidth : float
-
Bandwidth of the resulting bins.
data : seq<'a>
-
Data of type a with a float field to bin by.
Returns: Map<float, seq<'a>>
|
Sorts the data into bins with given bandwidth.
|