Skip to content
Prev 8421 / 398502 Next

Problem with multiple factors in nlme

"Uli Flenker; Raum 704" <uli at biochem.dshs-koeln.de> writes:
And log(0,01) should read log(0.01) too...

Seems to boil down to 

Browse[1]> fixed[[nm]]
A ~ Treatment * Type
Browse[1]> fixed[[nm]][[3]]
Treatment * Type

..which is a formula, so fixed[[nm]][[3]] != "1" fails

changing to 

fixed[[nm]][[3]][[1]] != "1"

seems to work and it should be safe since any nonsimple formula will
have an operator and not a "1" in that position.