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
I am used to name different regression r1, r2, ..., rn to print them later using regtable.
I think a bug showed up recently because this runs
using DataFrames, RDatasets, FixedEffectModels
df =dataset("plm", "Cigar")
r1 =reg(df, @formula(Sales ~ NDI +fe(State) +fe(Year)), Vcov.cluster(:State), weights =:Pop)
But this errors
r2 =reg(df, @formula(Sales ~ NDI +fe(State) +fe(Year)), Vcov.cluster(:State), weights =:Pop)
ERROR: cannot assign a value to imported variable FixedEffectModels.r2 from module Main
Stacktrace:
[1] top-level scope
@ REPL[313]:1
The text was updated successfully, but these errors were encountered:
I am used to name different regression r1, r2, ..., rn to print them later using regtable.
I think a bug showed up recently because this runs
But this errors
The text was updated successfully, but these errors were encountered: