RegressionModel<T>.Predictions Property

Gets a vector containing the model's predicted values for the dependent variable.

Definition

Namespace: Numerics.NET.DataAnalysis.Models
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public Vector<T> Predictions { get; }

Property Value

Vector<T>

Remarks

This property is only available when the model is fitted. It throws an InvalidOperationException if the model is empty or deployed.

Exceptions

InvalidOperationException Thrown if the model is empty or deployed.

See Also