Displaying 1 result from an estimated 1 matches for "startmodel".
Did you mean:
startmode
2006 Jul 01
4
Start Model for POLYCLASS
Dear all,
I have a question on how to set up the starting model in POLYCLASS and
make sure the terms in the starting model retained in the final
POLYCLASS model.
In the function POLYMARS, this can be done using the STARTMODEL option.
See below for example, I started with model
y= b0 + b1*X1 + b2*X2 + b3*X4 + b4*X5 + b5*X2*X5 + e
> m00 <- matrix(c(
1, NA, 0, NA, 1,
2, NA, 0, NA, 1,
4, NA, 0, NA, 1,
5, NA, 0, NA, 1,
2, NA, 5, NA, 1),nrow = 5, ncol=5, byrow=TRUE);
>...