CategoricalGenLinModelExtendedLikelihoodObservations Property |
A vector indicating which observations are included in the extended
likelihood.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual int[] ExtendedLikelihoodObservations { get; set; }
Public Overridable Property ExtendedLikelihoodObservations As Integer()
Get
Set
public:
virtual property array<int>^ ExtendedLikelihoodObservations {
array<int>^ get ();
void set (array<int>^ value);
}
abstract ExtendedLikelihoodObservations : int[] with get, set
override ExtendedLikelihoodObservations : int[] with 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 Exception | Condition |
---|
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:
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.
See Also