Gets or sets the weights of the observations in this model.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property WeightVector As Vector
C#
public Vector WeightVector { get; set; }
C++
public:
Vector^ WeightVector {
	Vector^ get ();
	void set (Vector^ value);
}

Value

A Vector with length the total number of observations.

Remarks

Observations can be excluded by setting the corresponding component of the weight vector to zero. If no value is specified, or if the weight vector is set to nullNothingnullptr, all the weights are assumed to be equal to 1.