Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

23 results for “from:Alday, Phillip”

spam backscatter from r-sig-mixed-models?
Alday, Phillip · Apr 18, 2018 · r-sig-mixed-models

Not yet, but a similar problem was just reported on r-help (under the slightly more panicky subject "hacked") Phillip Sent from my mobile, please excuse the brevity. ________________________________ From: Ben Bolker <bbolker at gmail.com> Sent: Wednesday, April 18, 2018...

Residuals look "mirrored" when using lmer with imputed data
Alday, Phillip · Aug 4, 2017 · r-sig-mixed-models

You're fitting a normal/Gaussian LMM to data bounded on [0, 1]. The model assumptions about the residuals simply won't hold for bounded, binomial-like values.? Why not fit a binomial model to the data and then use...

Interaction terms with random slopes
Alday, Phillip · Apr 3, 2020 · r-sig-mixed-models

Perhaps because I never had to deal with software that relies on explicit nesting of levels, I find it very hard to follow the level-1 and level-2 terminology. Can you provide an example of the model you're...

Question about inclusion of a random effect
Alday, Phillip · Aug 8, 2017 · r-sig-mixed-models

Yes, it makes sense. This is what is often called an "item" in the discussion on crossed random effects and leaving it out can distort inferences - see Clark 1974 "Language as a fixed effect fallacy" and more recent work by...

Question about inclusion of a random effect
Alday, Phillip · Aug 8, 2017 · r-sig-mixed-models

Yes, it makes sense. This is what is often called an "item" in the discussion on crossed random effects and leaving it out can distort inferences - see Clark 1974 "Language as a fixed effect fallacy" and more recent work by...

GAMMs: difference smooths in itsadug
Alday, Phillip · Jul 16, 2018 · r-sig-mixed-models

Hi Sebastian, are you using gamm4? If so, you can extract the GAM object, which if I'm not mistaken is already marginalized over the random effects i.e. is just fixed effects, and just use its plotting functions. model...

r crossed nested random effects lme4
Alday, Phillip · Jun 28, 2018 · r-sig-mixed-models

lme4 doesn't force a hard nested-crossed distinction and can handle implicit nesting/crossing easily (assuming unique identifiers, which you have), so you don't have to worry about that. The only "problem" I see with your model is...

gls() funcion after R upgrade
Alday, Phillip · Feb 18, 2019 · r-sig-mixed-models

Dear Fabio, Your example runs fine on my machine, and I have a comparable R and nlme version. Have you tried re-installing nlme and all its dependencies? install.packages("nlme",dependencies=TRUE) Sometimes dependencies can get out of sync...

upcoming changes to lme4 default optimizers (lmer only)
Alday, Phillip · Jan 22, 2019 · r-sig-mixed-models

For psycholinguistics datasets (especially EEG and eye movements), I have noticed that nloptwrap sometimes reports convergence failure when "bobyqa" does not. I think the "problem" is with xtol_abs -- changing maxeval has no impact, but allowing for smaller x-step...

is a mixed effect model appropiate?
Alday, Phillip · Aug 9, 2017 · r-sig-mixed-models

With only three sites, you don't have enough levels to use site as a grouping variable / random effect. Random effects are *variance* components and it doesn't make too much sense to discuss variance with only three group members...

subjects within groups and effects of group
Alday, Phillip · Jan 25, 2018 · r-sig-mixed-models

Completely agree with Thierry here. In addition to the usual considerations about the bias-variance tradeoff and partial pooling, you need to have things in one model if you really want to compare them. The Difference Between ?Significant? and ?Not...

Significance of B-splines components in mixed-effects logistic regression (glmer)
Alday, Phillip · Sep 21, 2018 · r-sig-mixed-models

Dear Anne, For comparison, here's a GAMM for the same example: # Anne's code first, then library(gamm4) gam.mod <- gamm4(DV ~ s(IV1) + IV2 + IV3, random=~(1|RV1) + (1|RV2), ???????????????? data=df, family=binomial) summary(gam.mod$mer...

Using anova vs. Anova for linear mixed model
Alday, Phillip · Sep 13, 2019 · r-sig-mixed-models

Dear Jon, dear Kevin, I suspect Kevin is using lmerTest and not lme4 directly. lmerTest does have a type argument for anova() and defaults to the Satterthwaite ddf approximation. Phillip Sent from my mobile, please excuse the brevity. ________________________________ Von: "Fox...

Different results for between/within groups and within group regression analyses
Alday, Phillip · Jan 11, 2018 · r-sig-mixed-models

By only using one group, you're changing the amount of pooling going on, which affects shrinkage and the bias-variance / over- vs. underfitting tradeoff. When you fit a model to a subset, it will generally be better at describing...

Should I use full models when using Powersim?
Alday, Phillip · Feb 18, 2019 · r-sig-mixed-models

On 18/2/19 10:19 pm, Ben Bolker wrote: > Agree with everything said here. A few super-low-tech partial > solutions ... > > Others may disagree, but 5000 sims seems pretty extreme for estimating > power (which is after all never better...

Residuals look "mirrored" when using lmer with imputed data
Alday, Phillip · Aug 6, 2017 · r-sig-mixed-models

Uh ... part of my problem is the term "AUC". Without some very explicit note to the contrary, AUC on a stats forum often refers to a cumulative probability or the Receiver Operating Characteristic (ROC AUC). Remember, we're doing this...

Different results for between/within groups and within group regression analyses
Alday, Phillip · Jan 11, 2018 · r-sig-mixed-models

I'll do it myself when I get the chance in the next day or so. :-) Phillip ________________________________ From: Luca Danieli <mr.lucedan at hotmail.it> Sent: Thursday, January 11, 2018 10:26 AM To: Alday, Phillip; r-sig-mixed-models...

Different results for between/within groups and within group regression analyses
Alday, Phillip · Jan 25, 2018 · r-sig-mixed-models

I don't think this set of questions was ever addressed in any of the subsequent threads on this or other forums .... and so I'll give you a quick non answer of bullet points: * "significance" should not be the...

Statistical significance of random-effects (lme4 or others)
Alday, Phillip · Sep 7, 2020 · r-sig-mixed-models

I'm replying to the last email in the thread, but I'm addressing several issues raised along the way: * I'm not sure you should call it a _likelihood_ ratio test for REML fitted models given that REML isn...

afex in missing data (when testing main effects in presence of interactions in factorial designs)
Alday, Phillip · Jun 6, 2017 · r-sig-mixed-models

Hi Henrik, hi Thomas, There is one small additional footnote to add to the Type-II/Type-III comparison: Type-II tests respect the principle of marginality, while Type-III tests do not. This is discussed somewhat in John Fox...

Can't find what you're looking for? Try searching with Google .