Displaying 2 results from an estimated 2 matches for "axbxc".
Did you mean:
axboe
2004 Dec 02
2
regex to match word boundaries
...whether or not I specify perl) but "\\b" does not seem to
act on all complement positions:
> gsub("\\b", "X", "abc def") # nothing done
[1] "abc def"
> gsub("\\B", "X", "abc def") # as expected, I think
[1] "aXbXc dXeXf"
> gsub("\\b", "X", "abc def", perl = TRUE) # not as expected
[1] "abc Xdef"
> gsub("\\B", "X", "abc def", perl = TRUE) # as expected
[1] "aXbXc dXeXf"
> R.version.string # Windows 2000
[1] "R...
2010 Aug 05
2
compare gam fits
...-Mixed-Models for this one
(https://stat.ethz.ch/pipermail/r-sig-mixed-models/2010q3/004170.html),
but I think that the final steps to a solution aren't mixed-model
specific, so I thought I'd ask my final questions here.
I used gamm4 to fit a generalized additive mixed model to data from a
AxBxC design, where A is a random effect (human participants in an
experiment), B is a 2-level factor predictor variable, and C is a
continuous variable that is likely non-linear. I tell gamm4 to fit a
smooth across C to each level of B independently, and I can use
predict.gam(...,se.fit=T) to obtain pre...