Correlation table
Signature: table:Table -> string [] * float [] []
|
If at least two of the table columns are real or int then returns (Column Names) * (Correlations)
else throws an exception.
|
Pdf pointCount column
Signature: pointCount:int -> column:Column -> float [] * float []
|
Returns a probability density function of the column if the column is numeric.
|
Summary column
Signature: column:Column -> ColumnSummary
|
Returns some simple statistical properties of a column.
|
TryCorrelation table
Signature: table:Table -> (string [] * float [] []) option
|
If at least two of the columns are real or int then Some(Column Names * Correlations)
else None
|
TryPdf pointCount column
Signature: pointCount:int -> column:Column -> (float [] * float []) option
|
Tries to compute a probability density function of the column if the column is numeric.
|