Displaying 1 result from an estimated 1 matches for "renais".
Did you mean:
relais
2012 Mar 24
0
Help ordinal mixed model!
...eatment (called fases) consist of three levels
(1-pre, 2-propolis and 3-vincris) and the ordinal variable response has
three categories (1-normal, 2-agudo, 3 - cronico). See table!
du <-
transform(read.table('http://dl.dropbox.com/u/33619290/Dados/Dtest.txt',h=T),FASES=factor(FASES),ALT.RENAIS=ordered(ALT.RENAIS))
summary(du)
library('MCMCglmm')
du <- subset(du, ALT.RENAIS != 'NA')
tabela <- table(du[,c(2,4)])
tabela
colnames(tabela) <- c('Normal','Aguda','Cr?nica')
rownames(tabela) <- c('Pre',...