Displaying 3 results from an estimated 3 matches for "withmcmc".
2008 Nov 26
1
Problem with aovlmer.fnc in languageR
...hen I try to run the following code (from R. H.
Baayen's textbook):
# Example 1:
library(languageR)
latinsquare.lmer <- lmer(RT ~ SOA + (1 | Word) + (1 | Subject),
data = latinsquare)
x <- pvals.fnc(latinsquare.lmer,
withMCMC = TRUE)
aovlmer.fnc(latinsquare.lmer,
mcmc = x$mcmc,
which = c("SOAmedium", "SOAshort"))
I get the following error message (German locale):
Fehler in anova(object) : Calculated PWRSS for a LMM is negative
Invoking traceback yield...
2013 Jan 23
0
Mixed effects para factores y no para covariables. Guia y dudas
...ctor(paste(latinsquare$SOA, latinsquare$Word))
modI <- lmer(formula= RT ~ SoaWord +(1|Subject), data=latinsquare)
#---------------------------------------------------------------------------------------------------------
# Manera más complicada languageR.
mcmc <- pvals.fnc(mod, nsim=1000, withMCMC=TRUE)
aovlmer.fnc(mod, mcmc= mcmc$mcmc, which=c("SOAmedium", "SOAshort"))
aovlmer.fnc(mod, mcmc= mcmc$mcmc, which=c("WordW10", "WordW11", "WordW12",
"WordW2" , "WordW3" , "WordW4", "WordW5" , "WordW6&qu...
2009 Mar 09
5
Help
...(from R. H.
> Baayen's textbook):
>
>
> # Example 1:
> library(languageR)
> latinsquare.lmer <- lmer(RT ~ SOA + (1 | Word) + (1 | Subject),
> data = latinsquare)
> x <- pvals.fnc(latinsquare.lmer,
> withMCMC = TRUE)
> aovlmer.fnc(latinsquare.lmer,
> mcmc = x$mcmc,
> which = c("SOAmedium", "SOAshort"))
>
>
> I get the following error message (German locale):
>
>
> Fehler in anova(object) : Calculated PWRSS for a LMM i...