Model.Fitted Property

Gets whether the model has been computed.

Definition

Namespace: Extreme.DataAnalysis.Models
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public bool Fitted { get; }

Property Value

Boolean
true if the Fit() method has been called and the results of the model are available; Otherwise false.

Remarks

Inspect this property to determine whether the results of the model are available. If this property returns false, call the Fit() method to compute the results.

See Also