py-econometrics/pyfixest

The .get_ functions do not appear to return anything

Closed this issue · 1 comments

While working with the model object, I noticed that none of the get_ functions are returning any values. For example, model.get_nobs() and model.get_fit(). Is anyone else experiencing this issue, or is it just me?

Hi @rlustermans, I admit that the .get_ methods are poorly named - they are only meant for internal use and in consequence, all of them only assign attributes but don't return anything. I should rename them at some point. See here for the get_nobs() method. You can obtain the number of observations by calling fit.nobs(), coefficients by calling fit.coef(), a tidy data frame by calling fit.tidy() etc.