Class RegressionResults
Class that holds the results of a run of Vec.Regress
.
Inherited Members
Namespace: TimeSeriesAnalysis
Assembly: TimeSeriesAnalysis.dll
Syntax
public class RegressionResults
Constructors
| Edit this page View SourceRegressionResults()
Default constructor, sets all values to null or zero.
Declaration
public RegressionResults()
Properties
| Edit this page View SourceAbleToIdentify
True if able to identify, otherwise false
Declaration
public bool AbleToIdentify { get; set; }
Property Value
Type | Description |
---|---|
bool |
Bias
The bias term of the linear regression
Declaration
public double Bias { get; set; }
Property Value
Type | Description |
---|---|
double |
Gains
The gains of the linear regression
Declaration
public double[] Gains { get; set; }
Property Value
Type | Description |
---|---|
double[] |
NfittingBadDataPoints
Number of bad data point ignored in the fitting data set
Declaration
public int NfittingBadDataPoints { get; set; }
Property Value
Type | Description |
---|---|
int |
NfittingTotalDataPoints
Total number of data points in the fitting data set
Declaration
public int NfittingTotalDataPoints { get; set; }
Property Value
Type | Description |
---|---|
int |
ObjectiveFunctionValue
The value of the objective function after regression
Declaration
public double ObjectiveFunctionValue { get; set; }
Property Value
Type | Description |
---|---|
double |
Param
All regression parameters, first the gains, then the bias term.
Declaration
public double[] Param { get; set; }
Property Value
Type | Description |
---|---|
double[] |
Param95prcConfidence
The 95 percent confidence of parameters The confidence interval will be Param +/- Param95prcConfidence
Declaration
public double[] Param95prcConfidence { get; set; }
Property Value
Type | Description |
---|---|
double[] |
RegressionWarnings
Regression warnings
Declaration
public List<RegressionWarnings> RegressionWarnings { get; set; }
Property Value
Type | Description |
---|---|
List<RegressionWarnings> |
Rsq
R2-root-means-squared between Y and Y_modelled for the tuning dataset(a value between 0 and 100, higher is better)
Declaration
public double Rsq { get; set; }
Property Value
Type | Description |
---|---|
double |
VarCovarMatrix
The variance/covariance matrix of the regression run
Declaration
public double[][] VarCovarMatrix { get; set; }
Property Value
Type | Description |
---|---|
double[][] |
Y_modelled
The modelled output
Declaration
public double[] Y_modelled { get; set; }
Property Value
Type | Description |
---|---|
double[] |