- Bugfix: When using splines, generateData threw an error due to the variable not being within the dataset.
- Bugfix: fixed a bug in print.contrast pointed out by Mads Jeppe Tarp-Johansen
-
Package reorganized to use
roxygen2
, markdown,testthat
, code coverage, continuous testing, and other features. -
The degrees of freedom for
lme
models were changed (again). Previously, it would make this determination from the number of data points, fixed effect parameters, and random effect parameters. Now it follows what thedoBy
package does, using internal data fromlme
objects and takes the smallest possible degrees of freedom if variables involved in the the contrast have variable df. The previous method for counting df did not align with the results inside of thelee
objects for simple cases.
-
Maintainer email was changed
-
A typo was fixed in the vignette
- For
lme
models, Thorn Thaler found a bug in some models where the calculation of model degrees of freedom could not be determined and proposed a fix.
-
If the sandwich estimate failed, the traditional covariance estimator is used instead.
-
Moved to a real NEWS file format.
-
A bug was fixed (spotted by Thorn Thaler) where normal (not t) distributions were being used with
lme
andgls
models to calculate confidence intervals.
- Fixed links in man page to point to
rms
instead ofDesign
-
The package was updated to work with the
rms
package instead of theDesign
package. -
A bug was fixed for generalized linear models with no degrees of freedom, such as log-linear models.
-
The vignette was slightly reformatted.
-
An error check was added for
lme
models that will fail if the covariance matrix of the variance-covariance coefficients has issues (sincelme
counts the number of random effects when calculating degrees of freedom). -
With
lme
, this problem is signaled bylmeObject$apVar
being a character string (eg. "Non-positive definite approximate variance-covariance")
- Fixed typo in manual
- Added log fold-change transformation
- Cleaned up the package vignette a little
- Added specific namespace calls to
nlme
so thatlme4
methods do not interfere.