Ben Bolker

Results 265 comments of Ben Bolker

For what it's worth, https://github.com/glmmTMB/glmmTMB/issues/293

This is a classic GLM approach. When sample sizes are reasonably large (e.g. Poisson with 'large' mean (>5?), Binomial with `n*p*(1-p)` 'large'), the Pearson residuals for a GLM approach normality....

To be honest I don't fully understand the advantages of the base-R change, but I'm fine with this. I think it's a matter of taste whether you want to present...

See https://github.com/lme4/lme4/issues/739

I doubt you're missing anything obvious. Getting all the details of mapped parameters right is tedious ... I definitely appreciate the example and will take a look.

No objections, but if anyone wanted to submit a PR it might make things go faster ...

I would be happy if you wanted to take on maintainership - I'd be willing to help with mathier stuff. (If you wanted you could modify the README etc. to...

The only thing that came up in an `R CMD check --as-cran`/`devtools::check()` was ``` Found the following (possibly) invalid URLs: URL: https://tinyurl.com/y43gpto4 (moved to https://github.com/datalorax/equatiomatic/tree/master/tests) From: README.md Status: 200 Message:...

For what it's worth there's an [extensive Stack Overflow answer](https://stackoverflow.com/questions/11925537/should-we-consider-using-range-a-z-as-a-bug/44228789#44228789) demonstrating that many tested regex implementations use locale-/collating-sequence-independent ranges (the only exceptions were *some* versions of `grep` and `awk`)

Honestly, I'm not too worried about this. The practical advice that's always given (which I agree with) is "don't rely on ranges to identify alphabetic characters, use `[:alpha:]` instead"). I...