[Lme4-commits] r1756 - pkg/lme4/R
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue May 29 15:02:46 CEST 2012
Author: bbolker
Date: 2012-05-29 15:02:46 +0200 (Tue, 29 May 2012)
New Revision: 1756
Modified:
pkg/lme4/R/AllClass.R
Log:
first hack at step-halving when compDev=FALSE (not yet working, commented out); add setDelu, setDelb accessors
added 'verbose' argument to mkdevfun (pass through to pwrssUpdate)
profile changes: allow NAs in profiles
add preliminary confint.merMod
Modified: pkg/lme4/R/AllClass.R
===================================================================
--- pkg/lme4/R/AllClass.R 2012-05-25 21:43:11 UTC (rev 1755)
+++ pkg/lme4/R/AllClass.R 2012-05-29 13:02:46 UTC (rev 1756)
@@ -202,6 +202,14 @@
'solve for the coefficient increment delu only (beta is fixed)'
.Call(merPredDsolveU, ptr())
},
+ setDelu = function(val) {
+ 'set the coefficient increment delu'
+ .Call(merPredDsetDelu , ptr(), as.numeric(val))
+ },
+ setDelb = function(val) {
+ 'set the coefficient increment delb'
+ .Call(merPredDsetDelb , ptr(), as.numeric(val))
+ },
sqrL = function(fac) {
'squared length of u0 + fac * delu'
.Call(merPredDsqrL, ptr(), as.numeric(fac))
More information about the Lme4-commits
mailing list