Click or drag to resize
CategoricalGenLinModelExtendedLikelihoodObservations Property
A vector indicating which observations are included in the extended likelihood.

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

Property Value

Type: Int32
An int array of length nobs indicating which observations are included in the extended likelihood where nobs is the number of observations.
Exceptions
ExceptionCondition
ArgumentException is thrown when an element of ExtendedLikelihoodObservations is not in the range [0,2]
Remarks

ExtendedLikelihoodObservations is an int array of length nobs indicating which observations are included in the extended likelihood where nobs is the number of observations. The values within the array are interpreted as:

ValueStatus of observation
0Observation i is in the likelihood.
1Observation i cannot be in the likelihood because it contains at least one missing value in x.
2Observation i is not in the likelihood. Its estimated parameter is infinite.
A null is returned if Solve has not been called prior to calling this method.

By default, all elements are zero.

See Also