Skip to content
Prev 38 / 176 Next

[R--gR] Modelformulae

just 2 comments:
I think you will have to use the b() notation. The '&' operator will
probably confuse the formula parser.
This is illegal in R. You will need to use a separator like + or again a
grouping function:

~ A * (X+Y+Z) | X + Y + Z
or
~ A * (X+Y+Z) | l(X,Y,Z)

just my 2c

David