Roger Levy has created a possibly useful wiki for exchanging questions about the use of R for language research:
https://ling.ucsd.edu/mailman/listinfo.cgi/r-lang
This blog is a repository of cool things relating to statistical computing, simulation and stochastic modeling.
Search
Saturday, April 28, 2007
Saturday, April 21, 2007
How to choose between a multiplicity of sexy models
It's websites like this that give model selection such a bad reputation in science:
http://www.modelselection.org/
http://www.modelselection.org/
A blog most amazing
I just found a most astounding blog via Gelman's blog:
http://emotion.inrialpes.fr/~dangauthier/blog/
http://emotion.inrialpes.fr/~dangauthier/blog/
Tuesday, April 17, 2007
How to extract SEs from lmer fixed effects estimates
Extracting fixed effects coefficients from lmer is easy:
fixef(lmer.fit)
But extracting SEs of those coefficients is, well, trivial, but you have to know what to do. It's not obvious:
Vcov <- vcov(lmer.fit, useScale = FALSE)
se <- sqrt(diag(Vcov))
fixef(lmer.fit)
But extracting SEs of those coefficients is, well, trivial, but you have to know what to do. It's not obvious:
Vcov <- vcov(lmer.fit, useScale = FALSE)
se <- sqrt(diag(Vcov))
Subscribe to:
Posts (Atom)