Skip to content

Commit

Permalink
fix #130
Browse files Browse the repository at this point in the history
  • Loading branch information
jknowles committed Jan 29, 2024
1 parent 7f4a57b commit 30e0563
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions DESCRIPTION
Expand Up @@ -41,3 +41,5 @@ VignetteBuilder: knitr
RoxygenNote: 7.3.0
Encoding: UTF-8
BugReports: https://github.com/jknowles/merTools
Config/testthat/edition: 3
Config/testthat/parallel: true
1 change: 1 addition & 0 deletions NEWS.md
Expand Up @@ -3,6 +3,7 @@
## merTools 0.6.2

- Maintenance release to fix minor issues with function documentation
- Fix #130 by avoiding conflict with `vcov` in the `merDeriv` package

## merTools 0.6.1

Expand Down
2 changes: 1 addition & 1 deletion R/merFastDisplay.R
Expand Up @@ -37,7 +37,7 @@ fastdisp.merMod <- function (x, ...)
print(out$call)
fcoef <- fixef(x)
useScale <- getME(x, "devcomp")$dims["useSc"]
corF <- vcov(x)@factors$correlation
corF <- lme4::vcov.merMod(x)@factors$correlation
coefs <- cbind(fcoef, corF@sd)
if (length(fcoef) > 0) {
if (!useScale) {
Expand Down

0 comments on commit 30e0563

Please sign in to comment.