Displaying 2 results from an estimated 2 matches for "residuen".
Did you mean:
residue
2011 Sep 12
1
nested anova<-R chrashing
...)))" R sometimes is
even crashing down.
_Question 2: normal distribution and homogeneity of variance_
So fare I tested "normal" Anovas by doing a linear model following
plotting and KS-test and Bartlett-test including Q-Q-plot.
fm<-lm(survivors~clone1*plant1*size1*position1)
Residuen<-resid(fm) Here R is crashing again!!!
ks.test(Residuen,mean(Residuen),sd(Residuen))
plot(density(Residuen))
qqnorm(Residuen)
par(mfrow=c(2,2))
plot(fm)
bartlett.test(survivors~clone1*plant1*position1*size1)
Is that too much to compute for R? Is it OK to look for the
preconditions for th...
2013 Jun 05
2
combining two different matrizes
...14]
? ?? ?rrf = residual[(j-5):j,15]
? ?? ?rex = rx-rrf
? ?? ?rerm = rrm-rrf
? ?? ?#Berechnung
? ?? ?res <-
sum(rex-(reglist[[i]][2]*rerm+reglist[[i]][3]*rsmb+reglist[[i]][4]*rhml))/sd(rex-(reglist[[i]][2]*rerm+reglist[[i]][3]*rsmb+reglist[[i]][4]*rhml))
? ?? ?reglist[[i]] <- res
}? ?
? ?
#Residuen auf alle Aktien
? ?alist[[a]] <- reglist
}
? ?
#Matrix mit Residuen
? ?matrixres <- do.call(cbind,alist)
#Spaltennamen/Zeilennamen
s<- names(residual)[2:11]
colnames(matrixres)<-s
#RenditeMatrix
matrixr <- do.call(cbind,residual[60:243,2:11])
Now I want to combines the two matri...