Returns a collection of model terms for the columns with the specified keys.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static ModelTermCollection Variables(
IList<string> keys,
bool noIntercept = false
)
Public Shared Function Variables (
keys As IList(Of String),
Optional noIntercept As Boolean = false
) As ModelTermCollection
public:
static ModelTermCollection^ Variables(
IList<String^>^ keys,
bool noIntercept = false
)
static member Variables :
keys : IList<string> *
?noIntercept : bool
(* Defaults:
let _noIntercept = defaultArg noIntercept false
*)
-> ModelTermCollection
Parameters
- keys
- Type: System.Collections.GenericIListString
A list of strings containing the keys of the columns - noIntercept (Optional)
- Type: SystemBoolean
Indicates whether a constant term should be included.
Return Value
Type:
ModelTermCollectionA collection of unbound terms with keys in
keys.
Reference