Populates the model input group
from a sequence of vectors.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void Populate(
IEnumerable<Vector<double>> columns,
bool noIntercept = true
)
Public Sub Populate (
columns As IEnumerable(Of Vector(Of Double)),
Optional noIntercept As Boolean = true
)
public:
void Populate(
IEnumerable<Vector<double>^>^ columns,
bool noIntercept = true
)
member Populate :
columns : IEnumerable<Vector<float>> *
?noIntercept : bool
(* Defaults:
let _noIntercept = defaultArg noIntercept true
*)
-> unit
Parameters
- columns
- Type: System.Collections.GenericIEnumerableVectorDouble
A sequence of categorical vectors. - noIntercept (Optional)
- Type: SystemBoolean
Specifies whether an intercept (constant) term should be
included or not.
Reference