Function to call C++ Cgeefit Function

DESCRIPTION:

This function is for internal use only. It returns a list that represents a fit of a Generalized Estimation Equation model.

USAGE:

 
cgeefit(x) 
 

REQUIRED ARGUMENTS:

x
a list corresponding to the first component, gee.model, of a geeDesign object.
See geeDesign.object for details.

VALUE:

A list with the following components:

coefficients
regression parameter estimates;
correlation
correlation parameter estimates;
scale
scale parameter estimates;
iter
number of iterations;
cor.work
estimated working correlation;
naive
covariance estimates of estimated regression parameters (model-based naive estimator);
sandwich
covariance estimates of estimated regression parameters (empirical sandwich estimator);
fitted.values
fitted response;
variance.y
estimated variance of response.

SEE ALSO:

, , ,

DETAILS:

This help file documents the input/output of a call to Cgeefit , since cgeefit(x) is equivalent to
.Call("Cgeefit", design = x, COPY = T, CLASSES = NULL) .