IMSL C# Numerical Library

CategoricalGenLinModel.CensorColumn Property

The column number in x which contains the interval type for each observation.

public virtual int CensorColumn {set;}

Property 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
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.

Exceptions

Exception TypeCondition
ArgumentException is thrown when CensorColumn is less than 0 or greater than or equal to the number of columns of x

See Also

CategoricalGenLinModel Class | Imsl.Stat Namespace