Rev 4715 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
-----The discrepancy calculation for glmer must be wrong. All variancecomponent estimates are being driven to zero.-----Approximate standard errors and correlations for the fixed effectsparameters in nlmer and glmer models. Should there be a generalcalculation of the information matrix?-----Find out why there is a .p at the end of the model names in theprinted value of anova with multiple arguments.-----Collapse repeated grouping factors and correspondingly modify theranef and coef methods.-----Check the calculation of the conditional variances of the random effects.-----Add an element to the deviance slot to hold sigma or log(sigma). Theinterpretation will be that an NA value means to use the conditionalestimate of the scale parameter. For a generalized linear mixed modelwithout a scale parameter set sigma = 1 (or log(sigma) = 0) and putconstraints on the parameter so that it is not estimated.Upon convergence replace that element with the conditional estimate inmodels where it has been profiled out.-----Consider the steps in reimplementing AGQ. First you need to find theconditional modes, then evaluate the conditional variances, then stepout according to the conditional variance, evaluate the integrandrelative to the step.The paper by Sophia Rabe-Hesketh et al describes a spherical formof the Gauss-Hermite quadrature formula. Look that up and use it.Because the Gauss-Hermite quadrature is formed as a sum, it isnecessary to divide the contributions to the deviance according tothe levels of the random effects. This means that it is onlypractical to use AGQ when the response vector can be split intosections that are conditionally independent. As far as I can seethis will mean a single grouping factor only.-----Allow for a matrix of responses in lmer so multiple fits can beperformed without needing to regenerate the model matrices.-----Modify the one-argument form of the anova method for lmer objects (yetagain) to calculate the F ratios. It is the df, not the ratio thatis controversial.Should there be an extractor function for the mean square error? Ifso, what should it be called?-----Determine what a "coef" function should do for multiple, possiblynon-nested, grouping factors.-----Determine why the names of the components of the values ofthe ranef and coef extractor methods are not printed.------ add nicer (more realistic?) pedigree examples and tests- document print(<mer>) including an example print(<lmer>, corr = FALSE)