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
In a model with, e.g., list_of_formulas = list( ~ 1 + x + s(z), ~ 1 + s(z) + d(x) ) the processor term only needs to be stored once as the corresponding weights for the different predictor terms are anyway not stored within the processed term. However, this would require information for orthogonalization to be more general. This means the processor would then not applied for each list_of_formulas terms separately, but applied once for all terms and then different predictor roles are assigned.
The text was updated successfully, but these errors were encountered:
davidruegamer
changed the title
Store unique predictor terms only once
Store identical predictor terms from different formula entries only once
Dec 1, 2021
In a model with, e.g.,
list_of_formulas = list( ~ 1 + x + s(z), ~ 1 + s(z) + d(x) )
the processor term only needs to be stored once as the corresponding weights for the different predictor terms are anyway not stored within the processed term. However, this would require information for orthogonalization to be more general. This means the processor would then not applied for eachlist_of_formulas
terms separately, but applied once for all terms and then different predictor roles are assigned.The text was updated successfully, but these errors were encountered: