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
This might an edge case coming from FixedEffectModels permissive formulas.
Fixedeffectmodels allows for some "calculations" inside the formulas, one of them being a substraction. This returns a valid result in fixedeffectmodels but triggers an error once inside of regtable
using DataFrames
using RDatasets
using RegressionTables
using FixedEffectModels
iris =dataset("datasets", "iris")
r1 =reg(iris, @formula(SepalLength ~ SepalWidth - PetalLength ))
regtable(r1; render =AsciiTable())
I am not sure it's worth doing anything about. Maybe people can find this issue if they run into something similar.
I do believe this is new behavior that showed up as I was running some old code (could not tell you the version though).
The text was updated successfully, but these errors were encountered:
This might an edge case coming from FixedEffectModels permissive formulas.
Fixedeffectmodels allows for some "calculations" inside the formulas, one of them being a substraction. This returns a valid result in fixedeffectmodels but triggers an error once inside of regtable
The output is
I am not sure it's worth doing anything about. Maybe people can find this issue if they run into something similar.
I do believe this is new behavior that showed up as I was running some old code (could not tell you the version though).
The text was updated successfully, but these errors were encountered: