Closed RWParsons closed 10 months ago
Suggestions and how they've been addressed:
afaik, this is controlled by the
control
argument when callingglmmTMB()
- if this is the case, then the user can control it when calling cglmm as all additional arguments (...
) are passed to theglmmTMB(...)
call here.
Have updated the README (thanks @oliverjayasinghe).
Have created a
stats::sigma()
method (cglmm.sigma()
) that callsglmmTMB::sigma()
with the underlying glmmTMB object.
Minor suggestions
Have removed all uses of the base R pipe (
|>
) in the package.
dat_mixed$subject <- as.factor(dat_mixed$subject)
and it worked.
Have updated these in the tests - please let me know whether this works where you had found this issue?
@jcavieresg approved changes here: https://github.com/ropensci/software-review/issues/603#issuecomment-1882632517
Review Comments
Suggestions
Minor suggestions
dat_mixed$subject <- as.factor(dat_mixed$subject)
and it worked.