You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can only fit y ~ (x1 + x2) + x3 via non-formula, or assign separate scale parameters for each of the interactions. The reason is that (x1 + x2) is treated as H = H1 + H2 and the individual kernel matrices H1 and H2 are not saved to process the Hadamard interactions.
It is possible to code this to make it work, but need to think of how the user inputs the iprior call. Perhaps need to work on the formula parsing before this can be implemented.
On the bright side, it is not probable that a model would have shared scale parameters and interactions at the same time... Not that I've encountered yet anyway.
The text was updated successfully, but these errors were encountered:
It is impossible to fit the following model
We can only fit
y ~ (x1 + x2) + x3
via non-formula, or assign separate scale parameters for each of the interactions. The reason is that(x1 + x2)
is treated asH = H1 + H2
and the individual kernel matricesH1
andH2
are not saved to process the Hadamard interactions.It is possible to code this to make it work, but need to think of how the user inputs the
iprior
call. Perhaps need to work on the formula parsing before this can be implemented.On the bright side, it is not probable that a model would have shared scale parameters and interactions at the same time... Not that I've encountered yet anyway.
The text was updated successfully, but these errors were encountered: