Displaying 4 results from an estimated 4 matches for "ingaschwabe".
2012 Oct 13
2
Function hatTrace in package lme4
Dear all,
For a project I need to calculate the conditional AIC of a mixed effects
model.
Luckily, I found a reference in the R help forum for a function to be used:
CAIC <- function(model) {
sigma <- attr(VarCorr(model), 'sc')
observed <- attr(model, 'y')
predicted <- fitted(model)
cond.loglik <- sum(dnorm(observed,
2012 Oct 18
3
For loop with i and j and multiple if statements... help!
Dear all!
I'm quite new to R and at this moment a little bit lost in trying to make a
function work with a for loop
that has two variables (i and j) and multiple if statements..
I hope that someone of you could help me. I would very appreciate it!
What do I want to do? I am analysing the data of an 'eye tracker'. The eye
tracker registers the coordinates to which participants
2011 Oct 03
1
Assigning factor names to interaction plot
Hi everyone,
I have the following problem:
I have three variables, 'group', 'city' and 'pressure'
There is an interaction effect between group and city and I'd like to show
this in an interaction plot:
interaction.plot(group, city, pressure, type="b",
col= c(1:2),
leg.bty="o", leg.bg="blue", lwd=1,
2011 Oct 11
2
Creating the mean using algebra matrix
Dear all,
I wanted to create the mean using a algebra matrix.
so I tried this one:
> meanAnimals <- new3%*%factorial
(Calculates the matrix multiplication of the new3 * factorial).
But I get the following error message:
Error in new3 %*% factorial : non-conformable arguments
These are my matrices:
> new3
[,1] [,2]
[1,] 1.350 8.1
[2,] 465.000 423.0