Populates the groups using the specified vectors and matrices.
Namespace:
Extreme.DataAnalysis.Models
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void Populate(
Vector<double> dependentData,
Matrix<double> independentData,
bool noIntercept = true,
Vector<double> weightData = null
)
Public Sub Populate (
dependentData As Vector(Of Double),
independentData As Matrix(Of Double),
Optional noIntercept As Boolean = true,
Optional weightData As Vector(Of Double) = Nothing
)
public:
void Populate(
Vector<double>^ dependentData,
Matrix<double>^ independentData,
bool noIntercept = true,
Vector<double>^ weightData = nullptr
)
member Populate :
dependentData : Vector<float> *
independentData : Matrix<float> *
?noIntercept : bool *
?weightData : Vector<float>
(* Defaults:
let _noIntercept = defaultArg noIntercept true
let _weightData = defaultArg weightData null
*)
-> unit
Parameters
- dependentData
- Type: Extreme.MathematicsVectorDouble
A vector containing the targets or dependent variable. - independentData
- Type: Extreme.MathematicsMatrixDouble
A matrix containing, in its columns, the independent
variables or features. - noIntercept (Optional)
- Type: SystemBoolean
Specifies whether an intercept term should be
included. - weightData (Optional)
- Type: Extreme.MathematicsVectorDouble
A vector containing case weights. May be .
Reference