Matthew Kay
Matthew Kay
I could perhaps dig up some examples if there is interest. I changed the ggdist default to the equivalent of `bw.SJ(..., method = "dpi")` around the time I added automatic...
For example ```r set.seed(20240522) data.frame(x = rlnorm(10000)) |> ggplot() + geom_density(aes(x, color = "sj"), bw = "sj", bounds = c(0, Inf), n = 1000) + geom_density(aes(x, color = "nrd0"), bw...
Can you prepare a [reprex](https://reprex.tidyverse.org/) that reproduces the error? Then I might be able to help debug it.
Hmm, I had not seen that paper, thanks for raising this. The alignment process implemented in the R version of ARTool is the same as the alignment process implemented in...
This all sounds very reasonable. I don't currently have a ton of cycles for this, so I'm not likely to get to it in the short term, but I am...
Can you give a test dataset (on synthetic data will do) giving the error with a [reprex](https://reprex.tidyverse.org/)? Thanks!
Ah okay, I see the issue now. Fixing it for the repeated measures ANOVA is a bit of a pain, but fixing it for mixed effects models was straightforward. I...
Ah, personally I would prefer the random slopes model, but you can get the precisely equivalent model in lmer using the same nesting syntax; something like: ```r m = art(values...
(as I am under a paper deadline myself and the random effects syntax should yield the same model, I am unlikely to fix the error term syntax at the moment...
Yeah, it's admittedly a bit obscure, but that column is there already and can be referred to by name (pass the data structure to `str()` to see it)