search for: semio2

Displaying 2 results from an estimated 2 matches for "semio2".

Did you mean: semion
2008 Sep 03
2
ANCOVA/glm missing/ignored interaction combinations
...account that I want to consider two way interactions: > model.a<-glm(total~(temperature+humidity+semio)^2,family=poisson) > summary(model.a) I get the output below. But not all interactions are listed there are 4 semio categories, 1,2,3 and 4 but only 2,3,and 4 are listed in the summary (semio2,semio3,semio4). And I cant for the life of me work out why category one (semio1) is being ignored, missing etc. Any help or suggestions would be most appreciated. Thanks in advance Lara lara.harrup at bbsrc.ac.uk Call: glm(formula = total ~ (temperature + humidity + semio)^2, family = poisson)...
2009 Mar 22
1
Multiple Comparisons for (multicomp - glht) for glm negative binomial (glm.nb)
...d. Many thanks in advance. Lara semiochemical <-read.csv("G:/semiochemical_data.csv", header=T) semiochemical$location2<-factor(semiochemical$location) levels(semiochemical$location2)<-c("1","2","3","4","5") semiochemical$semio2<-factor(semiochemical$semio) levels(semiochemical$semio2)<-c("A","B","C","D") semiochemical$CO22<-factor(semiochemical$CO2) levels(semiochemical$CO22)<-c("1","2") model1<-glm.nb(total ~ semio + CO2 + location + temp + me...