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
Term(:a) * Term(:b) and most of the @formula operators are currently not supported. It would be useful to have those for constructing formulas programmatically.
The text was updated successfully, but these errors were encountered:
Which of the other operators are not supported? ~, +, and & should all more or less work at run time. If they don't then that's a bug but there are tests for them.
* is a bit of a special case; it's currently handled at parse time and no run-time methods are defined for it. That might change in a future version though, but that syntax has been...controversial...so it migth be handled via the normal FunctionTerm overloading for regression models, perhaps in a package like https://github.com/kleinschmidt/RegressionFormulae.jl (which is very much WIP)
Which of the other operators are not supported? ~, +, and & should all more or less work at run time. If they don't then that's a bug but there are tests for them.
Term(:a) * Term(:b)
and most of the@formula
operators are currently not supported. It would be useful to have those for constructing formulas programmatically.The text was updated successfully, but these errors were encountered: