A vector indicating which observations are included in the extended likelihood.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual int[] ExtendedLikelihoodObservations { get; set; }
Visual Basic (Declaration)
Public Overridable Property ExtendedLikelihoodObservations As Integer()
Visual C++
public:
virtual property array<int>^ ExtendedLikelihoodObservations {
	array<int>^ get ();
	void set (array<int>^ value);
}

Field Value

An int array of length nobs indicating which observations are included in the extended likelihood where nobs is the number of observations.

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:

Value Status of observation
0 Observation i is in the likelihood.
1 Observation i cannot be in the likelihood because it contains at least one missing value in x.
2 Observation 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.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown when an element of ExtendedLikelihoodObservations is not in the range [0,2]

See Also