FixedEffects / FixedEffectModels.jl

Fast Estimation of Linear Models with IV and High Dimensional Categorical Variables
Other
225 stars 46 forks source link

For data abstraction, added more return value functions #251

Closed droodman closed 9 months ago

droodman commented 10 months ago

Just added

F(m::FixedEffectModel) = m.F
iterations(m::FixedEffectModel) = m.iterations
converged(m::FixedEffectModel) = m.converged
esample(m::FixedEffectModel) = m.esample
r2_within(m::FixedEffectModel) = m.r2_within
nclusters(m::FixedEffectModel) = m.nclusters
matthieugomez commented 9 months ago

I cannot export functions like F iterations and converged — there are too general. I will tag new versions and use depreciations if I change fieldnames in the future (which is unlikely).