Click or drag to resize
CategoricalGenLinModelCensorColumn Property
The column number in x which contains the interval type for each observation.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual int CensorColumn { set; }

Property Value

Type: Int32
An int scalar which indicates the column number x which contains the interval type code for each observation.
Exceptions
ExceptionCondition
ArgumentException is thrown when CensorColumn is less than 0 or greater than or equal to the number of columns of x
Remarks

The valid codes are interpreted as:

x[i,CensorColumn]Censoring
0Point observation. The response is unique and is given by x[i,LowerEndpointColumn].
1Right 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.
2Left interval. The response is less than or equal to x[i,UpperEndpointColumn] and greater than or equal to the lower bound of the distribution.
3Full 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.

See Also