CategoricalGenLinModelModelIntercept Property |
The intercept option.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual int ModelIntercept { set; }
Public Overridable WriteOnly Property ModelIntercept As Integer
Set
public:
virtual property int ModelIntercept {
void set (int value);
}
abstract ModelIntercept : int with set
override ModelIntercept : int with set
Property Value
Type:
Int32
An
int scalar which indicates whether or not the model has an
intercept.
Exceptions Exception | Condition |
---|
ArgumentException |
is thrown when ModelIntercept is less than 0 or greater than 1
|
Remarks
Input ModelIntercept is interpreted as follows:
Value | Action |
---|
0 | No intercept is in the model (unless
otherwise provided for by the user). |
1 | Intercept is automatically included
in the model. |
By default ModelIntercept = 1.
See Also