Returns a collection of model terms for the columns with the specified keys
in an index.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static ModelTermCollection Numerical(
IIndex index,
bool noIntercept = true
)
Public Shared Function Numerical (
index As IIndex,
Optional noIntercept As Boolean = true
) As ModelTermCollection
public:
static ModelTermCollection^ Numerical(
IIndex^ index,
bool noIntercept = true
)
static member Numerical :
index : IIndex *
?noIntercept : bool
(* Defaults:
let _noIntercept = defaultArg noIntercept true
*)
-> ModelTermCollection
Parameters
- index
- Type: Extreme.DataAnalysisIIndex
The index that contains the column keys. - noIntercept (Optional)
- Type: SystemBoolean
Indicates whether a constant term should be included.
Return Value
Type:
ModelTermCollectionA collection of numerical terms with keys in
index.
Reference