The column number in x which contains the interval
type for each observation.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual int CensorColumn { set; } |
Visual Basic (Declaration) |
---|
Public Overridable WriteOnly Property CensorColumn As Integer |
Visual C++ |
---|
public: virtual property int CensorColumn { void set (int value); } |
Field Value
An int scalar which indicates the column number x which contains the interval type code for each observation.
Remarks
The valid codes are interpreted as:
x[i,CensorColumn] | Censoring |
---|---|
0 | Point observation. The response is unique and is given by x[i,LowerEndpointColumn]. |
1 | Right interval. The response is greater than or equal to x[i,LowerEndpointColumn] and less than or equal to the upper bound, if any, of the distribution. |
2 | Left interval. The response is less than or equal to x[i,UpperEndpointColumn] and greater than or equal to the lower bound of the distribution. |
3 | Full interval. The response is greater than or equal to x[i,LowerEndpointColumn] but less than or equal to x[i,UpperEndpointColumn]. |
By default, CensorColumn = 0.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | is thrown when CensorColumn is less than 0 or greater than or equal to the number of columns of x |