I am doing mixed models with nested random effects. When I run the summary of the model I see that the number of degrees of freedom of the level "control fishless" of the variable "treatment 1" is 11 while the four other levels' df is 51. I would expect them to be all the same. What could be the cause of this and how can I fix the problem?
Thank you!
My model:
library(nlme)
library(emmeans)
data.score.merge2$treatment1 <- relevel(data.score.merge2$treatment1,"control fish")
mod.full.PC1 <- lme(PC1 ~ season + elevation + treatment1, method = "REML",
random = ~1|lake/replicate,
data = data.score.merge2)
summary(mod.full.PC1)
anova(mod.full.PC1)
pairs(emmeans(mod.full.PC1, ~treatment1))
My data (I put them all because it may be because of their distribution or something like that):
structure(list(sample = structure(1:102, .Label = c("Annette 1",
"Annette 2", "Annette 3", "Annette 4", "Annette 5", "Annette 6",
"Cobb1", "Cobb2", "Cobb3", "Cobb4", "Cobb5", "Cobb6", "Dog1",
"Dog2", "Dog3", "Dog4", "Dog5", "Dog6", "Helen1", "Helen2", "Helen3",
"Helen4", "Helen5", "Helen6", "Herbert 1", "Herbert 2", "Herbert 3",
"Herbert 4", "Herbert 5", "Herbert 6", "Hidden 10 Months 1",
"Hidden 10 Months 2", "Hidden 10 Months 3", "Hidden 10 Months 4",
"Hidden 10 Months 5", "Hidden 10 Months 6", "Hidden 10 Months 7",
"Hidden 10 Months 8", "Hidden After 1", "Hidden After 2", "Hidden After 3",
"Hidden After 4", "Hidden After 5", "Hidden After 6", "Hidden After 7",
"Hidden After 8", "Hidden Before 1", "Hidden Before 2", "Hidden Before 3",
"Hidden Before 4", "Hidden Before 5", "Hidden Before 6", "Hidden Before 7",
"Hidden Before 8", "Kootenay Pond 1", "Kootenay Pond 2", "Kootenay Pond 3",
"Kootenay Pond 4", "Kootenay Pond 5", "Kootenay Pond 6", "Margaret1",
"Margaret2", "Margaret3", "Margaret4", "Margaret5", "Margaret6",
"McNair1", "McNair2", "McNair3", "McNair4", "McNair5", "McNair6",
"Mud1", "Mud2", "Mud3", "Mud4", "Mud5", "Mud6", "Olive1", "Olive2",
"Olive3", "Olive4", "Olive5", "Olive6", "Ross1", "Ross2", "Ross3",
"Ross4", "Ross5", "Ross6", "Sentinel 1", "Sentinel 2", "Sentinel 3",
"Sentinel 4", "Sentinel 5", "Sentinel 6", "Temple1", "Temple2",
"Temple3", "Temple4", "Temple5", "Temple6"), class = "factor"),
replicate = c(1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L,
3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L,
3L, 1L, 2L, 3L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 1L, 2L, 3L,
4L, 5L, 6L, 7L, 8L, 1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L, 1L, 2L,
3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L,
3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L,
3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L, 3L, 1L, 2L,
3L), season = structure(c(1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L,
1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L,
2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
2L, 2L, 2L, 2L, 2L, 1L, 2L, 2L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L,
1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L,
2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L, 1L, 2L, 2L, 2L, 1L, 1L,
1L, 2L, 2L, 2L), .Label = c("july", "Sept"), class = "factor"),
elevation = c(1898L, 1898L, 1898L, 1898L, 1898L, 1898L, 1260L,
1260L, 1260L, 1260L, 1260L, 1260L, 1185L, 1185L, 1185L, 1185L,
1185L, 1185L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 1506L,
1506L, 1506L, 1506L, 1506L, 1506L, 2400L, 2400L, 2400L, 2400L,
2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L,
2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L, 2400L,
2400L, 2400L, 1128L, 1128L, 1128L, 1128L, 1128L, 1128L, 1808L,
1808L, 1808L, 1808L, 1808L, 1808L, 1532L, 1532L, 1532L, 1532L,
1532L, 1532L, 1600L, 1600L, 1600L, 1600L, 1600L, 1600L, 1470L,
1470L, 1470L, 1470L, 1470L, 1470L, 1735L, 1735L, 1735L, 1735L,
1735L, 1735L, 2274L, 2274L, 2274L, 2274L, 2274L, 2274L, 2207L,
2207L, 2207L, 2207L, 2207L, 2207L), lake = structure(c(1L,
1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 3L, 3L, 3L, 3L,
3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 5L, 5L, 5L, 5L, 5L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L,
6L, 6L, 6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L, 7L, 7L, 7L, 8L,
8L, 8L, 8L, 8L, 8L, 9L, 9L, 9L, 9L, 9L, 9L, 10L, 10L, 10L,
10L, 10L, 10L, 11L, 11L, 11L, 11L, 11L, 11L, 12L, 12L, 12L,
12L, 12L, 12L, 13L, 13L, 13L, 13L, 13L, 13L, 14L, 14L, 14L,
14L, 14L, 14L), .Label = c("Annette", "Cobb", "Dog", "Helen",
"Herbert", "Hidden", "Kootenay Pond", "Margaret", "McNair",
"Mud", "Olive", "Ross", "Sentinel", "Temple"), class = "factor"),
treatment1 = structure(c(5L, 5L, 5L, 5L, 5L, 5L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 5L, 5L, 5L, 5L, 5L, 5L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L,
3L, 3L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 4L,
4L, 5L, 5L, 5L, 5L, 5L, 5L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 5L, 5L, 5L, 5L, 5L, 5L, 1L, 1L,
1L, 1L, 1L, 1L), .Label = c("control fish", "10 month after",
"2 weeks", "Before", "control fish less"), class = "factor"),
PC1 = c(0.44326796769495, 0.391805088607907, 0.366947929408647,
0.441091779859967, 0.403451309938093, 0.290713511918726,
-0.116054225460659, 0.0837383015520615, -0.138878110788659,
-0.0964488183669892, -0.00381046526130373, -0.158529727412508,
0.228810116000753, 0.116624496704548, -0.0690976721539107,
0.241173083526596, 0.149149975299026, 0.144601131921389,
-0.132779778461221, -0.128217883448178, -0.131033607355805,
-0.214176904428602, -0.181864972831349, -0.178177705570812,
0.172493720206089, 0.208305957239218, 0.20607376930861, 0.238450520739572,
0.102790731251281, 0.0160873782197574, 0.302705601248893,
0.425953281002366, 0.274172226495253, 0.280315453212515,
0.0798037386796905, 0.506141404170783, 0.262641034377766,
0.400158058034833, 0.0532097743994839, -0.132559135111449,
-0.208628889600582, -0.283005491924375, 0.00488503259743488,
0.0532097743994839, -0.200151311512991, -0.19723781894123,
-0.2861581962982, -0.192654352006073, -0.260656011895704,
-0.222547061478245, -0.198133890113568, -0.201428667334639,
-0.303429745739617, -0.25748877830387, 0.438220569263306,
0.50013316765322, 0.516180868603105, 0.457174900484235, 0.191265288575061,
0.403629612339766, -0.032327404790195, -0.266767528170862,
-0.165290371763968, -0.253115189605474, -0.2661674781074,
-0.246530476585813, 0.161873213488864, 0.230102615861032,
0.247427735270813, 0.49154515223575, 0.332658929465825, 0.375955962214077,
-0.164941207044441, -0.14560006272253, -0.120381478479053,
-0.229436843745494, -0.135108208826027, -0.240164909215447,
0.132065444955584, -0.0264627444494227, -0.00763873712457839,
0.109028111315133, 0.0757425066027548, 0.0983200921588997,
-0.301499561057097, -0.226818786095393, -0.169404319537732,
-0.233550579992025, -0.19970763507962, -0.239831967809433,
-0.309404682344026, -0.311166025270994, -0.295989491984986,
-0.31253624380418, -0.300847881797013, -0.18667072522063,
-0.301875992307235, -0.308143568566698, -0.299702156473456,
-0.314275297789266, -0.306728420509431, -0.238861120432659
)), class = "data.frame", row.names = c(NA, -102L))